blob: 37f728895f694f5f562bd084a91ff35dc151c6f5 [file] [log] [blame]
Michalis Spyrou16934a52018-08-21 18:03:58 +01001/*
Sheri Zhang7e20e292021-02-02 11:49:34 +00002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyrou16934a52018-08-21 18:03:58 +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
25#include "arm_compute/runtime/CL/functions/CLSpaceToBatchLayer.h"
26
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/Validate.h"
31#include "arm_compute/runtime/CL/CLScheduler.h"
32
ramelg016d891572021-09-29 10:05:09 +010033#include "src/common/utils/Log.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034#include "src/core/CL/kernels/CLSpaceToBatchLayerKernel.h"
ramelg016d891572021-09-29 10:05:09 +010035
Michalis Spyrou16934a52018-08-21 18:03:58 +010036namespace arm_compute
37{
38CLSpaceToBatchLayer::CLSpaceToBatchLayer()
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010039 : _space_to_batch_kernel(std::make_unique<CLSpaceToBatchLayerKernel>()), _fill(), _has_padding(false)
Michalis Spyrou16934a52018-08-21 18:03:58 +010040{
41}
42
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010043CLSpaceToBatchLayer::~CLSpaceToBatchLayer() = default;
44
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045void CLSpaceToBatchLayer::configure(const ICLTensor *input,
46 const ICLTensor *block_shape,
47 const ICLTensor *paddings,
48 ICLTensor *output)
Michalis Spyrou16934a52018-08-21 18:03:58 +010049{
Manuel Bottini2b84be52020-04-08 10:15:51 +010050 configure(CLKernelLibrary::get().get_compile_context(), input, block_shape, paddings, output);
51}
52
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010053void CLSpaceToBatchLayer::configure(const CLCompileContext &compile_context,
54 const ICLTensor *input,
55 const ICLTensor *block_shape,
56 const ICLTensor *paddings,
57 ICLTensor *output)
Manuel Bottini2b84be52020-04-08 10:15:51 +010058{
Isabella Gottardicc6129c2018-12-14 11:40:40 +000059 ARM_COMPUTE_ERROR_ON_NULLPTR(input, block_shape, paddings, output);
ramelg016d891572021-09-29 10:05:09 +010060 ARM_COMPUTE_LOG_PARAMS(input, block_shape, paddings, output);
Michalis Spyrou16934a52018-08-21 18:03:58 +010061
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010062 if (input->info()->tensor_shape().total_size() != output->info()->tensor_shape().total_size())
Michalis Spyrou16934a52018-08-21 18:03:58 +010063 {
64 _has_padding = true;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010065 _fill.configure(compile_context, output,
66 PixelValue(0, input->info()->data_type(), input->info()->quantization_info()));
Michalis Spyrou16934a52018-08-21 18:03:58 +010067 }
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010068 _space_to_batch_kernel->configure(compile_context, input, block_shape, paddings, output);
Michalis Spyrou16934a52018-08-21 18:03:58 +010069}
70
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010071void CLSpaceToBatchLayer::configure(const ICLTensor *input,
72 const int block_shape_x,
73 const int block_shape_y,
74 const Size2D &padding_left,
75 const Size2D &padding_right,
76 ICLTensor *output)
Michalis Spyrou16934a52018-08-21 18:03:58 +010077{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010078 configure(CLKernelLibrary::get().get_compile_context(), input, block_shape_x, block_shape_y, padding_left,
79 padding_right, output);
Manuel Bottini2b84be52020-04-08 10:15:51 +010080}
81
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010082void CLSpaceToBatchLayer::configure(const CLCompileContext &compile_context,
83 const ICLTensor *input,
84 const int block_shape_x,
85 const int block_shape_y,
86 const Size2D &padding_left,
87 const Size2D &padding_right,
88 ICLTensor *output)
Manuel Bottini2b84be52020-04-08 10:15:51 +010089{
Michalis Spyrou16934a52018-08-21 18:03:58 +010090 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
ramelg016d891572021-09-29 10:05:09 +010091 ARM_COMPUTE_LOG_PARAMS(input, block_shape_x, block_shape_y, padding_left, padding_right, output);
Michalis Spyrou16934a52018-08-21 18:03:58 +010092
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010093 if (input->info()->tensor_shape().total_size() != output->info()->tensor_shape().total_size())
Michalis Spyrou16934a52018-08-21 18:03:58 +010094 {
95 _has_padding = true;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010096 _fill.configure(compile_context, output,
97 PixelValue(0, input->info()->data_type(), input->info()->quantization_info()));
Michalis Spyrou16934a52018-08-21 18:03:58 +010098 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010099 _space_to_batch_kernel->configure(compile_context, input, block_shape_x, block_shape_y, padding_left, padding_right,
100 output);
Michalis Spyrou16934a52018-08-21 18:03:58 +0100101}
102
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100103Status CLSpaceToBatchLayer::validate(const ITensorInfo *input,
104 const ITensorInfo *block_shape,
105 const ITensorInfo *paddings,
106 const ITensorInfo *output)
Michalis Spyrou16934a52018-08-21 18:03:58 +0100107{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100108 ARM_COMPUTE_RETURN_ON_ERROR(
109 CLFill::validate(output, PixelValue(0, input->data_type(), input->quantization_info())));
Isabella Gottardicc6129c2018-12-14 11:40:40 +0000110 ARM_COMPUTE_RETURN_ON_ERROR(CLSpaceToBatchLayerKernel::validate(input, block_shape, paddings, output));
111
112 return Status{};
Michalis Spyrou16934a52018-08-21 18:03:58 +0100113}
114
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100115Status CLSpaceToBatchLayer::validate(const ITensorInfo *input,
116 const int block_shape_x,
117 const int block_shape_y,
118 const Size2D &padding_left,
119 const Size2D &padding_right,
Michalis Spyrou16934a52018-08-21 18:03:58 +0100120 const ITensorInfo *output)
121{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100122 ARM_COMPUTE_RETURN_ON_ERROR(
123 CLFill::validate(output, PixelValue(0, input->data_type(), input->quantization_info())));
124 ARM_COMPUTE_RETURN_ON_ERROR(
125 CLSpaceToBatchLayerKernel::validate(input, block_shape_x, block_shape_y, padding_left, padding_right, output));
Isabella Gottardicc6129c2018-12-14 11:40:40 +0000126
127 return Status{};
Michalis Spyrou16934a52018-08-21 18:03:58 +0100128}
129
130void CLSpaceToBatchLayer::run()
131{
132 // Zero out output only if we have paddings
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100133 if (_has_padding)
Michalis Spyrou16934a52018-08-21 18:03:58 +0100134 {
Sheri Zhang7e20e292021-02-02 11:49:34 +0000135 //CLScheduler::get().enqueue(*_fill, true);
136 _fill.run();
Michalis Spyrou16934a52018-08-21 18:03:58 +0100137 }
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100138 CLScheduler::get().enqueue(*_space_to_batch_kernel, true);
Michalis Spyrou16934a52018-08-21 18:03:58 +0100139}
140} // namespace arm_compute