blob: 4803365013200e4a491f4a797b5601bcb0edd07e [file] [log] [blame]
Manuel Bottini5b7d5372019-05-17 14:04:22 +01001/*
2 * Copyright (c) 2019 ARM Limited.
3 *
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/core/NEON/kernels/NESpaceToDepthLayerKernel.h"
25
26#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/NEON/wrapper/wrapper.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/Validate.h"
31#include "arm_compute/core/utils/misc/ShapeCalculator.h"
32#include <arm_neon.h>
33#include <cstdint>
34
35using namespace arm_compute::misc::shape_calculator;
36
37namespace arm_compute
38{
39namespace
40{
41Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, int32_t block_shape)
42{
43 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
44 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
45
46 ARM_COMPUTE_RETURN_ERROR_ON(block_shape < 1);
47
48 // Validate output if initialized
49 if(output->total_size() != 0)
50 {
51 const DataLayout data_layout = input->data_layout();
52 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
53 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
54 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
55 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
56 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[idx_width] % block_shape != 0);
57 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[idx_height] % block_shape != 0);
58 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[idx_batch] != output->tensor_shape()[idx_batch]);
59 ARM_COMPUTE_RETURN_ERROR_ON(output->tensor_shape()[idx_channel] % (block_shape * block_shape) != 0);
60 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape().total_size() != output->tensor_shape().total_size());
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
62 }
63
64 return Status{};
65}
66} // namespace
67
68NESpaceToDepthLayerKernel::NESpaceToDepthLayerKernel()
69 : _input(nullptr), _output(nullptr), _block_shape()
70{
71}
72
73void NESpaceToDepthLayerKernel::configure(const ITensor *input, ITensor *output, int32_t block_shape)
74{
75 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
76
77 TensorShape output_shape = misc::shape_calculator::compute_space_to_depth_shape(input->info(), block_shape);
78 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type());
79
80 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), block_shape));
81
82 _input = input;
83 _block_shape = block_shape;
84 _output = output;
85
86 // Configure kernel window
87 Window win = calculate_max_window(*output->info(), Steps());
88 INEKernel::configure(win);
89}
90
91Status NESpaceToDepthLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, int32_t block_shape)
92{
93 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, block_shape));
94 return Status{};
95}
96
97void NESpaceToDepthLayerKernel::run(const Window &window, const ThreadInfo &info)
98{
99 ARM_COMPUTE_UNUSED(info);
100 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
101 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICPPKernel::window(), window);
102
103 const DataLayout data_layout = _input->info()->data_layout();
104 const int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
105 const int element_size = _input->info()->element_size();
106
107 const size_t channel_size = _input->info()->dimension(channel_idx);
108
109 Window slice_out = window.first_slice_window_3D();
110
111 int batch_id = 0;
112
113 // Main loop for NCHW and NHWC
114 if(_output->info()->data_layout() == DataLayout::NCHW)
115 {
116 do
117 {
118 Iterator out(_output, slice_out);
119 execute_window_loop(slice_out, [&](const Coordinates & id)
120 {
121 const size_t channel_id = id.z();
122 const size_t in_x = id.x() * _block_shape + (channel_id / channel_size) % _block_shape;
123 const size_t in_y = id.y() * _block_shape + (channel_id / channel_size) / _block_shape;
124 const int z = channel_id % channel_size;
125 Coordinates input_coords{ in_x, in_y, z, batch_id };
126 memcpy(out.ptr(), _input->ptr_to_element(input_coords), element_size);
127 },
128 out);
129 ++batch_id;
130 }
131 while(window.slide_window_slice_3D(slice_out));
132 }
133 else
134 {
135 do
136 {
137 Iterator out(_output, slice_out);
138 execute_window_loop(slice_out, [&](const Coordinates & id)
139 {
140 const size_t channel_id = id.x();
141 const size_t in_x = id.y() * _block_shape + (channel_id / channel_size) % _block_shape;
142 const size_t in_y = id.z() * _block_shape + (channel_id / channel_size) / _block_shape;
143 const int z = channel_id % channel_size;
144 Coordinates input_coords{ z, in_x, in_y, batch_id };
145 memcpy(out.ptr(), _input->ptr_to_element(input_coords), element_size);
146 },
147 out);
148 ++batch_id;
149 }
150 while(window.slide_window_slice_3D(slice_out));
151 }
152}
153} // namespace arm_compute