blob: f8217d3505afcc6a8e547d4048aeca4b2fbf903f [file] [log] [blame]
Georgios Pinitasf1adf112018-11-02 12:54:18 +00001/*
2 * Copyright (c) 2018 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/NEChannelShuffleLayerKernel.h"
25
26#include "arm_compute/core/CPP/Validate.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/ITensor.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Utils.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
34
35namespace arm_compute
36{
37namespace
38{
39Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, unsigned int num_groups)
40{
41 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input);
42 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input,
43 1,
44 DataType::U8, DataType::S8, DataType::QASYMM8,
45 DataType::U16, DataType::S16,
46 DataType::U32, DataType::S32,
47 DataType::F16, DataType::F32);
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(input, DataLayout::NCHW, DataLayout::NHWC);
49
50 const unsigned int channels = input->dimension(get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::CHANNEL));
51
52 ARM_COMPUTE_RETURN_ERROR_ON_MSG(num_groups < 2, "Channel shuffling with less than 2 groups would be inefficient");
53 ARM_COMPUTE_RETURN_ERROR_ON_MSG(num_groups == channels, "Channel shuffling with same number of groups as number of channels would be inefficient");
54 ARM_COMPUTE_RETURN_ERROR_ON(num_groups > channels); // There cannot be more groups than channels
55 ARM_COMPUTE_RETURN_ERROR_ON_MSG((channels % num_groups) != 0, "The number of channels must be a multiple of the number of groups");
56
57 // Checks performed when output is configured
58 if(output->total_size() != 0)
59 {
60 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
62 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
63 }
64
65 return Status{};
66}
67void channel_shuffle_nhwc(const ITensor *input, ITensor *output, unsigned int num_groups, const Window &window)
68{
69 const DataLayout data_layout = input->info()->data_layout();
70 const unsigned int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
71
72 const size_t element_size = input->info()->element_size();
73 const unsigned int K = input->info()->dimension(channel_idx) / num_groups;
74 const float rK = 1.f / K;
75
76 Iterator in(input, window);
77
78 execute_window_loop(window, [&](const Coordinates & id)
79 {
80 // Shuffle channel
81 const unsigned int curr_channel = id.x();
82 const unsigned int group_id = curr_channel * rK;
83 const unsigned int r = group_id * K;
84 const unsigned int channel_id = curr_channel - r;
85
86 // Calculate output coordinates
87 Coordinates out_coords = id;
88 out_coords.set(Window::DimX, channel_id * num_groups + group_id);
89 std::copy_n(in.ptr(), element_size, output->ptr_to_element(out_coords));
90 },
91 in);
92}
93void channel_shuffle_nchw(const ITensor *input, ITensor *output, unsigned int num_groups, const Window &window)
94{
95 Window win = window;
96 win.set(Window::DimX, Window::Dimension(0, 1, 1));
97 win.set(Window::DimY, Window::Dimension(0, 1, 1));
98
99 const DataLayout data_layout = input->info()->data_layout();
100 const unsigned int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
101 const unsigned int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
102
103 const unsigned int height = input->info()->tensor_shape().y();
104 const size_t input_stride_y = input->info()->strides_in_bytes().y();
105 const size_t output_stride_y = output->info()->strides_in_bytes().y();
106 const size_t row_size = input->info()->dimension(width_idx) * input->info()->element_size();
107
108 const unsigned int K = input->info()->dimension(channel_idx) / num_groups;
109 const float rK = 1.f / K;
110
111 Iterator in(input, win);
112
113 execute_window_loop(win, [&](const Coordinates & id)
114 {
115 // Shuffle channel
116 const unsigned int curr_channel = id.z();
117 const unsigned int group_id = curr_channel * rK;
118 const unsigned int r = group_id * K;
119 const unsigned int channel_id = curr_channel - r;
120
121 // Calculate output coordinates
122 Coordinates out_coords = id;
123 out_coords.set(Window::DimZ, channel_id * num_groups + group_id);
124 const uint8_t *input_ptr = in.ptr();
125 uint8_t *output_ptr = output->ptr_to_element(out_coords);
126
127 // Copy plane
128 for(unsigned int y = 0; y < height; ++y)
129 {
130 std::copy_n(input_ptr, row_size, output_ptr);
131 input_ptr += input_stride_y;
132 output_ptr += output_stride_y;
133 }
134 },
135 in);
136}
137} // namespace
138
139NEChannelShuffleLayerKernel::NEChannelShuffleLayerKernel()
140 : _input(nullptr), _output(nullptr), _num_groups()
141{
142}
143
144void NEChannelShuffleLayerKernel::configure(const ITensor *input, ITensor *output, unsigned int num_groups)
145{
146 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
147
148 // Output tensor auto initialization if not yet initialized
149 auto_init_if_empty(*output->info(), *input->info()->clone());
150
151 _input = input;
152 _output = output;
153 _num_groups = num_groups;
154
155 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), num_groups));
156
157 // Configure kernel window
158 Window win = calculate_max_window(*input->info(), Steps());
159
160 // The NEChannelShuffleLayerKernel doesn't need padding so update_window_and_padding() can be skipped
161 Coordinates coord;
162 coord.set_num_dimensions(output->info()->num_dimensions());
163 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
164
165 INEKernel::configure(win);
166}
167
168Status NEChannelShuffleLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int num_groups)
169{
170 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, num_groups));
171 return Status{};
172}
173
174void NEChannelShuffleLayerKernel::run(const Window &window, const ThreadInfo &info)
175{
176 ARM_COMPUTE_UNUSED(info);
177 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
178 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
179
180 switch(_input->info()->data_layout())
181 {
182 case DataLayout::NHWC:
183 channel_shuffle_nhwc(_input, _output, _num_groups, window);
184 break;
185 case DataLayout::NCHW:
186 channel_shuffle_nchw(_input, _output, _num_groups, window);
187 break;
188 default:
189 ARM_COMPUTE_ERROR("Unsupported data layout!");
190 break;
191 }
192}
193} // namespace arm_compute