blob: f292b893edc5c3a1adc43cb8ae31fd8c7bd91ab7 [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
Giorgio Arenaa66eaa22017-12-21 19:50:06 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier2a07e182017-08-04 18:20:27 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/graph/nodes/ConvolutionLayer.h"
25
Michalis Spyroued194b12017-10-31 15:04:34 +000026#include "arm_compute/graph/Error.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010027#include "arm_compute/runtime/CL/functions/CLConvolutionLayer.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010028#include "arm_compute/runtime/CL/functions/CLDirectConvolutionLayer.h"
29#include "arm_compute/runtime/IFunction.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010030#include "arm_compute/runtime/NEON/functions/NEConvolutionLayer.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010031#include "arm_compute/runtime/NEON/functions/NEDirectConvolutionLayer.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010032#include "support/ToolchainSupport.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010033#include "utils/GraphTypePrinter.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010034#include "utils/TypePrinter.h"
35
Georgios Pinitas6f669f02017-09-26 12:32:57 +010036#include <tuple>
37#include <vector>
38
Anthony Barbier2a07e182017-08-04 18:20:27 +010039using namespace arm_compute::graph;
40
41namespace
42{
Georgios Pinitas6f669f02017-09-26 12:32:57 +010043/** Calculates the output shaped of the convolution layer
44 *
45 * @param[in] input_shape Input tensor shape
46 * @param[in] weights_shape Weights shape
47 * @param[in] conv_info Convolution information (padding, stride, etc.)
48 *
49 * @return The expected output tensor shape
50 */
51TensorShape calculate_convolution_layer_output_shape(const TensorShape &input_shape, const TensorShape &weights_shape, const PadStrideInfo &conv_info)
Anthony Barbier2a07e182017-08-04 18:20:27 +010052{
Georgios Pinitas6f669f02017-09-26 12:32:57 +010053 unsigned int output_width = 0;
54 unsigned int output_height = 0;
Anthony Barbier2a07e182017-08-04 18:20:27 +010055
Georgios Pinitas6f669f02017-09-26 12:32:57 +010056 // Get output width and height
57 std::tie(output_width, output_height) = arm_compute::scaled_dimensions(input_shape.x(), input_shape.y(), weights_shape.x(), weights_shape.y(), conv_info);
58
59 // Create output shape
60 TensorShape output_shape = input_shape;
61 output_shape.set(0, output_width);
62 output_shape.set(1, output_height);
63 output_shape.set(2, weights_shape[3]);
64
65 return output_shape;
66}
67
68// Instantiate GEMM based convolution layer
Georgios Pinitasff421f22017-10-04 16:53:58 +010069template <typename ConvolutionType, typename TensorType, TargetHint target_hint>
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010070std::unique_ptr<arm_compute::IFunction> instantiate_function(arm_compute::ITensor *input, arm_compute::ITensor *weights, arm_compute::ITensor *biases, arm_compute::ITensor *output,
71 const PadStrideInfo &conv_info, const WeightsInfo &weights_info)
Georgios Pinitas6f669f02017-09-26 12:32:57 +010072{
Anthony Barbier2a07e182017-08-04 18:20:27 +010073 auto conv = arm_compute::support::cpp14::make_unique<ConvolutionType>();
74 conv->configure(
75 dynamic_cast<TensorType *>(input),
Georgios Pinitas6f669f02017-09-26 12:32:57 +010076 dynamic_cast<TensorType *>(weights),
77 dynamic_cast<TensorType *>(biases),
Anthony Barbier2a07e182017-08-04 18:20:27 +010078 dynamic_cast<TensorType *>(output),
79 conv_info, weights_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +010080 return std::move(conv);
81}
Anthony Barbier2a07e182017-08-04 18:20:27 +010082
Georgios Pinitas6f669f02017-09-26 12:32:57 +010083// Instantiate direct convolution layer
Georgios Pinitasff421f22017-10-04 16:53:58 +010084template <typename ConvolutionType, typename TensorType, TargetHint target_hint>
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010085std::unique_ptr<arm_compute::IFunction> instantiate_direct_function(arm_compute::ITensor *input, arm_compute::ITensor *weights, arm_compute::ITensor *biases, arm_compute::ITensor *output,
86 const PadStrideInfo &conv_info)
Georgios Pinitas6f669f02017-09-26 12:32:57 +010087{
88 auto conv = arm_compute::support::cpp14::make_unique<ConvolutionType>();
89 conv->configure(
90 dynamic_cast<TensorType *>(input),
91 dynamic_cast<TensorType *>(weights),
92 dynamic_cast<TensorType *>(biases),
93 dynamic_cast<TensorType *>(output),
94 conv_info);
Anthony Barbier2a07e182017-08-04 18:20:27 +010095 return std::move(conv);
96}
97
Georgios Pinitasff421f22017-10-04 16:53:58 +010098template <TargetHint target_hint>
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010099std::unique_ptr<arm_compute::IFunction> instantiate(arm_compute::ITensor *input, arm_compute::ITensor *weights, arm_compute::ITensor *biases, arm_compute::ITensor *output,
100 const PadStrideInfo &conv_info, const WeightsInfo &weights_info,
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100101 ConvolutionMethodHint conv_method);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100102
103template <>
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100104std::unique_ptr<arm_compute::IFunction> instantiate<TargetHint::OPENCL>(arm_compute::ITensor *input, arm_compute::ITensor *weights, arm_compute::ITensor *biases, arm_compute::ITensor *output,
105 const PadStrideInfo &conv_info,
Georgios Pinitasff421f22017-10-04 16:53:58 +0100106 const WeightsInfo &weights_info,
107 ConvolutionMethodHint conv_method)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100108{
Georgios Pinitas652bde52018-01-10 15:33:28 +0000109 if((conv_method == ConvolutionMethodHint::DIRECT)
110 && arm_compute::CLDirectConvolutionLayer::validate(input->info(), weights->info(), biases != nullptr ? biases->info() : nullptr, output->info(), conv_info)) // NOLINT
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100111 {
Georgios Pinitas652bde52018-01-10 15:33:28 +0000112 ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLDirectConvolutionLayer");
113 return instantiate_direct_function<arm_compute::CLDirectConvolutionLayer, arm_compute::ICLTensor, TargetHint::OPENCL>(input, weights, biases, output, conv_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100114 }
115 else
116 {
Georgios Pinitas652bde52018-01-10 15:33:28 +0000117 ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating CLConvolutionLayer");
118 return instantiate_function<arm_compute::CLConvolutionLayer, arm_compute::ICLTensor, TargetHint::OPENCL>(input, weights, biases, output, conv_info, weights_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100119 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100120}
121
122template <>
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100123std::unique_ptr<arm_compute::IFunction> instantiate<TargetHint::NEON>(arm_compute::ITensor *input, arm_compute::ITensor *weights, arm_compute::ITensor *biases, arm_compute::ITensor *output,
124 const PadStrideInfo &conv_info,
Georgios Pinitasff421f22017-10-04 16:53:58 +0100125 const WeightsInfo &weights_info,
126 ConvolutionMethodHint conv_method)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100127{
Georgios Pinitas652bde52018-01-10 15:33:28 +0000128 if((conv_method == ConvolutionMethodHint::DIRECT)
129 && arm_compute::NEDirectConvolutionLayer::validate(input->info(), weights->info(), biases != nullptr ? biases->info() : nullptr, output->info(), conv_info)) // NOLINT
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100130 {
Georgios Pinitas652bde52018-01-10 15:33:28 +0000131 ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEDirectConvolutionLayer");
132 return instantiate_direct_function<arm_compute::NEDirectConvolutionLayer, arm_compute::ITensor, TargetHint::NEON>(input, weights, biases, output, conv_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100133 }
134 else
135 {
Georgios Pinitas652bde52018-01-10 15:33:28 +0000136 ARM_COMPUTE_LOG_GRAPH_INFO("Instantiating NEConvolutionLayer");
137 return instantiate_function<arm_compute::NEConvolutionLayer, arm_compute::ITensor, TargetHint::NEON>(input, weights, biases, output, conv_info, weights_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100138 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100139}
140} // namespace
141
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100142/** Grouped Convolution function */
143class GroupedConvolutionFunction final : public arm_compute::IFunction
144{
145public:
146 /** Default Constructor */
147 GroupedConvolutionFunction()
148 : _convolutions()
149 {
150 }
151 /** Default Destructor */
152 ~GroupedConvolutionFunction() final = default;
153 /** Prevent instances from being copy constructed */
154 GroupedConvolutionFunction(const GroupedConvolutionFunction &) = delete;
155 /** Prevent instances from being copy assigned */
156 GroupedConvolutionFunction &operator=(const GroupedConvolutionFunction &) = delete;
157 /** Allow instances to be move constructed */
158 GroupedConvolutionFunction(GroupedConvolutionFunction &&) noexcept = default;
159 /** Allow instances to be move assigned */
160 GroupedConvolutionFunction &operator=(GroupedConvolutionFunction &&) noexcept = default;
161 /** Adds a convolution
162 *
163 * @param convolution Convolution function to add
164 */
165 void add_convolution_function(std::unique_ptr<IFunction> convolution)
166 {
167 _convolutions.emplace_back(std::move(convolution));
168 }
169
170 // Inherited methods overriden:
171 void run() override
172 {
173 for(auto &c : _convolutions)
174 {
175 c->run();
176 }
177 }
178
179private:
180 std::vector<std::unique_ptr<IFunction>> _convolutions;
181};
182
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100183std::unique_ptr<arm_compute::IFunction> ConvolutionLayer::instantiate_node(GraphContext &ctx, ITensorObject *input, ITensorObject *output)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100184{
Michalis Spyroued194b12017-10-31 15:04:34 +0000185 ARM_COMPUTE_ERROR_ON_UNALLOCATED_TENSOR_OBJECT(input, output);
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100186
187 arm_compute::ITensor *in = input->tensor();
188 arm_compute::ITensor *out = output->tensor();
189
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100190 // Set weights and biases info
Anthony Barbier2a07e182017-08-04 18:20:27 +0100191 if(_weights.tensor() == nullptr)
192 {
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000193 TensorInfo info = TensorInfo(TensorShape(_conv_width, _conv_height, in->info()->dimension(2) / _num_groups, _ofm),
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100194 in->info()->num_channels(),
195 in->info()->data_type(),
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000196 in->info()->fixed_point_position());
197 info.set_quantization_info(_weights_quant_info);
198 _weights.set_info(std::move(info));
Anthony Barbier2a07e182017-08-04 18:20:27 +0100199 }
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000200 if(_biases.has_accessor() && _biases.tensor() == nullptr)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100201 {
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000202 DataType dt = in->info()->data_type();
203 _biases.set_info(TensorInfo(TensorShape(_ofm), in->info()->num_channels(), is_data_type_quantized_asymmetric(dt) ? DataType::S32 : dt, in->info()->fixed_point_position()));
Anthony Barbier2a07e182017-08-04 18:20:27 +0100204 }
205
206 std::unique_ptr<arm_compute::IFunction> func;
Georgios Pinitasff421f22017-10-04 16:53:58 +0100207 _target_hint = ctx.hints().target_hint();
Georgios Pinitasff421f22017-10-04 16:53:58 +0100208 const ConvolutionMethodHint conv_method_hint = ctx.hints().convolution_method_hint();
Anthony Barbier2a07e182017-08-04 18:20:27 +0100209
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100210 // Check if the weights and biases are loaded
211 bool weights_are_loaded = _weights.tensor() != nullptr;
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000212 bool biases_are_loaded = _biases.has_accessor() ? _biases.tensor() != nullptr : true;
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100213
214 // Set bias and weights target
Georgios Pinitasff421f22017-10-04 16:53:58 +0100215 _weights.set_target(_target_hint);
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000216 if(_biases.has_accessor())
217 {
218 _biases.set_target(_target_hint);
219 }
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100220
221 // Calculate output shape
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100222 TensorShape output_shape = calculate_convolution_layer_output_shape(in->info()->tensor_shape(), _weights.info().tensor_shape(), _conv_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100223
224 // Output auto inizialitation if not yet initialized
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000225 arm_compute::auto_init_if_empty(*out->info(), output_shape, 1, in->info()->data_type(), in->info()->fixed_point_position(),
226 (_out_quant_info.empty()) ? in->info()->quantization_info() : _out_quant_info);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100227
228 // Create appropriate convolution function
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100229 if(_num_groups == 1)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100230 {
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100231 func = instantiate_convolution(in, out, conv_method_hint);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100232 }
233 else
234 {
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100235 func = instantiate_grouped_convolution(in, out, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100236 }
237
238 // Fill weights
239 if(!weights_are_loaded)
240 {
241 _weights.allocate_and_fill_if_needed();
242 }
243 // Fill biases
244 if(!biases_are_loaded)
245 {
246 _biases.allocate_and_fill_if_needed();
Anthony Barbier2a07e182017-08-04 18:20:27 +0100247 }
248
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +0100249 ARM_COMPUTE_LOG_GRAPH_INFO(" Data Type: " << in->info()->data_type()
250 << " Input Shape: " << in->info()->tensor_shape()
251 << " Weights shape: " << _weights.info().tensor_shape()
252 << " Biases Shape: " << _biases.info().tensor_shape()
253 << " Output Shape: " << out->info()->tensor_shape()
254 << " PadStrideInfo: " << _conv_info
255 << " Groups: " << _num_groups
256 << " WeightsInfo: " << _weights_info
257 << std::endl);
Michalis Spyroue4720822017-10-02 17:44:52 +0100258
Anthony Barbier2a07e182017-08-04 18:20:27 +0100259 return func;
260}
261
Michalis Spyroue4720822017-10-02 17:44:52 +0100262std::unique_ptr<arm_compute::IFunction> ConvolutionLayer::instantiate_convolution(ITensor *input, ITensor *output, ConvolutionMethodHint conv_method_hint)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100263{
264 std::unique_ptr<arm_compute::IFunction> func;
Georgios Pinitasff421f22017-10-04 16:53:58 +0100265 if(_target_hint == TargetHint::OPENCL)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100266 {
Michalis Spyroue4720822017-10-02 17:44:52 +0100267 func = instantiate<TargetHint::OPENCL>(input, _weights.tensor(), _biases.tensor(), output, _conv_info, _weights_info, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100268 }
269 else
270 {
Michalis Spyroue4720822017-10-02 17:44:52 +0100271 func = instantiate<TargetHint::NEON>(input, _weights.tensor(), _biases.tensor(), output, _conv_info, _weights_info, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100272 }
273 return func;
274}
275
Michalis Spyroue4720822017-10-02 17:44:52 +0100276std::unique_ptr<arm_compute::IFunction> ConvolutionLayer::instantiate_grouped_convolution(ITensor *input, ITensor *output, ConvolutionMethodHint conv_method_hint)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100277{
278 // Get tensor shapes
Michalis Spyroue4720822017-10-02 17:44:52 +0100279 TensorShape input_shape = input->info()->tensor_shape();
280 TensorShape output_shape = output->info()->tensor_shape();
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100281 TensorShape weights_shape = _weights.info().tensor_shape();
282 TensorShape biases_shape = _biases.info().tensor_shape();
283
284 ARM_COMPUTE_ERROR_ON_MSG((input_shape.z() % _num_groups) != 0, "Input depth not multiple of the number of groups!");
285 ARM_COMPUTE_ERROR_ON_MSG((output_shape.z() % _num_groups) != 0, "Output depth not multiple of the number of groups!");
286 ARM_COMPUTE_ERROR_ON_MSG((weights_shape[3] % _num_groups) != 0, "Number of kernels not multiple of the number of groups!");
287 ARM_COMPUTE_ERROR_ON_MSG((biases_shape.x() % _num_groups) != 0, "Biases not multiple of the number of groups!");
288
289 // Create a grouped convolution function
290 auto grouped_conv = arm_compute::support::cpp14::make_unique<GroupedConvolutionFunction>();
291
292 // Create sub-tensors vectors
293 _is = arm_compute::support::cpp14::make_unique<SubTensor[]>(_num_groups);
294 _os = arm_compute::support::cpp14::make_unique<SubTensor[]>(_num_groups);
295 _ws = arm_compute::support::cpp14::make_unique<SubTensor[]>(_num_groups);
296 _bs = arm_compute::support::cpp14::make_unique<SubTensor[]>(_num_groups);
297
298 // Calculate sub-tensor splits
299 const int input_split = input_shape.z() / _num_groups;
300 const int output_split = output_shape.z() / _num_groups;
301 const int weights_split = weights_shape[3] / _num_groups;
302 const int biases_split = biases_shape.x() / _num_groups;
303
304 // Calculate sub-tensor shapes
305 input_shape.set(2, input_split);
306 output_shape.set(2, output_split);
307 weights_shape.set(3, weights_split);
308 biases_shape.set(0, biases_split);
309
310 // Configure sub-tensors
311 for(int i = 0; i < static_cast<int>(_num_groups); ++i)
312 {
313 // Create convolution function
314 std::unique_ptr<arm_compute::IFunction> func;
315
316 // Calculate sub-tensors starting coordinates
317 Coordinates input_coord(0, 0, input_split * i);
318 Coordinates output_coord(0, 0, output_split * i);
319 Coordinates weights_coord(0, 0, 0, weights_split * i);
320 Coordinates biases_coord(biases_split * i);
321
322 // Create sub-tensors for input, output, weights and bias
Georgios Pinitasff421f22017-10-04 16:53:58 +0100323 auto hint_to_use = (_target_hint == TargetHint::OPENCL) ? TargetHint::OPENCL : TargetHint::NEON;
Michalis Spyroue4720822017-10-02 17:44:52 +0100324 _is[i] = SubTensor(input, input_shape, input_coord, hint_to_use);
325 _os[i] = SubTensor(output, output_shape, output_coord, hint_to_use);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100326 _ws[i] = SubTensor(_weights.tensor(), weights_shape, weights_coord, hint_to_use);
327 _bs[i] = SubTensor(_biases.tensor(), biases_shape, biases_coord, hint_to_use);
328
329 // Instantiate convolution function
Georgios Pinitasff421f22017-10-04 16:53:58 +0100330 if(_target_hint == TargetHint::OPENCL)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100331 {
Georgios Pinitasff421f22017-10-04 16:53:58 +0100332 func = instantiate<TargetHint::OPENCL>(_is[i].tensor(), _ws[i].tensor(), _bs[i].tensor(), _os[i].tensor(), _conv_info, _weights_info, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100333 }
334 else
335 {
Georgios Pinitasff421f22017-10-04 16:53:58 +0100336 func = instantiate<TargetHint::NEON>(_is[i].tensor(), _ws[i].tensor(), _bs[i].tensor(), _os[i].tensor(), _conv_info, _weights_info, conv_method_hint);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100337 }
338
339 // Add convolution function to the list of convolutions for the grouped convolution
340 grouped_conv->add_convolution_function(std::move(func));
341 }
342
343 return std::move(grouped_conv);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100344}