blob: 3b53b7055f1bc10ed8bfb4756f582cbcbdd2dfba [file] [log] [blame]
Georgios Pinitasf1adf112018-11-02 12:54:18 +00001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitasf1adf112018-11-02 12:54:18 +00003 *
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 */
Michalis Spyrouebcebf12020-10-21 00:04:14 +010024#include "src/core/NEON/kernels/NEChannelShuffleLayerKernel.h"
Georgios Pinitasf1adf112018-11-02 12:54:18 +000025
Georgios Pinitasf1adf112018-11-02 12:54:18 +000026#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Utils.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/core/Window.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/CPP/Validate.h"
35#include "src/core/helpers/AutoConfiguration.h"
36#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitasf1adf112018-11-02 12:54:18 +000037
38namespace arm_compute
39{
40namespace
41{
42Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, unsigned int num_groups)
43{
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000044 // Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use CPU FP16 instructions.
Georgios Pinitas33843562019-12-10 13:33:18 +000045 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Georgios Pinitasf1adf112018-11-02 12:54:18 +000046 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(input, DataLayout::NCHW, DataLayout::NHWC);
47
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010048 const unsigned int channels =
49 input->dimension(get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::CHANNEL));
Georgios Pinitasf1adf112018-11-02 12:54:18 +000050
51 ARM_COMPUTE_RETURN_ERROR_ON_MSG(num_groups < 2, "Channel shuffling with less than 2 groups would be inefficient");
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010052 ARM_COMPUTE_RETURN_ERROR_ON_MSG(
53 num_groups == channels,
54 "Channel shuffling with same number of groups as number of channels would be inefficient");
Georgios Pinitasf1adf112018-11-02 12:54:18 +000055 ARM_COMPUTE_RETURN_ERROR_ON(num_groups > channels); // There cannot be more groups than channels
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010056 ARM_COMPUTE_RETURN_ERROR_ON_MSG((channels % num_groups) != 0,
57 "The number of channels must be a multiple of the number of groups");
Georgios Pinitasf1adf112018-11-02 12:54:18 +000058
59 // Checks performed when output is configured
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010060 if (output->total_size() != 0)
Georgios Pinitasf1adf112018-11-02 12:54:18 +000061 {
62 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
63 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
64 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
65 }
66
67 return Status{};
68}
69void channel_shuffle_nhwc(const ITensor *input, ITensor *output, unsigned int num_groups, const Window &window)
70{
71 const DataLayout data_layout = input->info()->data_layout();
72 const unsigned int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
73
74 const size_t element_size = input->info()->element_size();
75 const unsigned int K = input->info()->dimension(channel_idx) / num_groups;
Pablo Marquez Tello36118522021-10-18 10:50:31 +010076 const double rK = 1.0 / K;
Georgios Pinitasf1adf112018-11-02 12:54:18 +000077
78 Iterator in(input, window);
79
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010080 execute_window_loop(
81 window,
82 [&](const Coordinates &id)
83 {
84 // Shuffle channel
85 const unsigned int curr_channel = id.x();
86 const unsigned int group_id = curr_channel * rK;
87 const unsigned int r = group_id * K;
88 const unsigned int channel_id = curr_channel - r;
Georgios Pinitasf1adf112018-11-02 12:54:18 +000089
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010090 // Calculate output coordinates
91 Coordinates out_coords = id;
92 out_coords.set(Window::DimX, channel_id * num_groups + group_id);
93 std::copy_n(in.ptr(), element_size, output->ptr_to_element(out_coords));
94 },
95 in);
Georgios Pinitasf1adf112018-11-02 12:54:18 +000096}
97void channel_shuffle_nchw(const ITensor *input, ITensor *output, unsigned int num_groups, const Window &window)
98{
99 Window win = window;
100 win.set(Window::DimX, Window::Dimension(0, 1, 1));
101 win.set(Window::DimY, Window::Dimension(0, 1, 1));
102
103 const DataLayout data_layout = input->info()->data_layout();
104 const unsigned int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
105 const unsigned int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
106
107 const unsigned int height = input->info()->tensor_shape().y();
108 const size_t input_stride_y = input->info()->strides_in_bytes().y();
109 const size_t output_stride_y = output->info()->strides_in_bytes().y();
110 const size_t row_size = input->info()->dimension(width_idx) * input->info()->element_size();
111
112 const unsigned int K = input->info()->dimension(channel_idx) / num_groups;
Pablo Tello0d11b702021-10-08 11:22:24 +0100113 const double rK = 1.0 / K;
Georgios Pinitasf1adf112018-11-02 12:54:18 +0000114
115 Iterator in(input, win);
116
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100117 execute_window_loop(
118 win,
119 [&](const Coordinates &id)
Georgios Pinitasf1adf112018-11-02 12:54:18 +0000120 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100121 // Shuffle channel
122 const unsigned int curr_channel = id.z();
123 const unsigned int group_id = curr_channel * rK;
124 const unsigned int r = group_id * K;
125 const unsigned int channel_id = curr_channel - r;
126
127 // Calculate output coordinates
128 Coordinates out_coords = id;
129 out_coords.set(Window::DimZ, channel_id * num_groups + group_id);
130 const uint8_t *input_ptr = in.ptr();
131 uint8_t *output_ptr = output->ptr_to_element(out_coords);
132
133 // Copy plane
134 for (unsigned int y = 0; y < height; ++y)
135 {
136 std::copy_n(input_ptr, row_size, output_ptr);
137 input_ptr += input_stride_y;
138 output_ptr += output_stride_y;
139 }
140 },
141 in);
Georgios Pinitasf1adf112018-11-02 12:54:18 +0000142}
143} // namespace
144
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100145NEChannelShuffleLayerKernel::NEChannelShuffleLayerKernel() : _input(nullptr), _output(nullptr), _num_groups()
Georgios Pinitasf1adf112018-11-02 12:54:18 +0000146{
147}
148
149void NEChannelShuffleLayerKernel::configure(const ITensor *input, ITensor *output, unsigned int num_groups)
150{
151 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
152
153 // Output tensor auto initialization if not yet initialized
154 auto_init_if_empty(*output->info(), *input->info()->clone());
155
156 _input = input;
157 _output = output;
158 _num_groups = num_groups;
159
160 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), num_groups));
161
162 // Configure kernel window
163 Window win = calculate_max_window(*input->info(), Steps());
164
165 // The NEChannelShuffleLayerKernel doesn't need padding so update_window_and_padding() can be skipped
Georgios Pinitasf1adf112018-11-02 12:54:18 +0000166 INEKernel::configure(win);
167}
168
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100169Status
170NEChannelShuffleLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int num_groups)
Georgios Pinitasf1adf112018-11-02 12:54:18 +0000171{
172 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, num_groups));
173 return Status{};
174}
175
176void NEChannelShuffleLayerKernel::run(const Window &window, const ThreadInfo &info)
177{
178 ARM_COMPUTE_UNUSED(info);
179 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
180 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
181
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100182 switch (_input->info()->data_layout())
Georgios Pinitasf1adf112018-11-02 12:54:18 +0000183 {
184 case DataLayout::NHWC:
185 channel_shuffle_nhwc(_input, _output, _num_groups, window);
186 break;
187 case DataLayout::NCHW:
188 channel_shuffle_nchw(_input, _output, _num_groups, window);
189 break;
190 default:
191 ARM_COMPUTE_ERROR("Unsupported data layout!");
192 break;
193 }
194}
195} // namespace arm_compute