blob: a4cdddee5e59670eabb54706db6ccb1ec91e9cdb [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Adnan AlSinan0ef2c212022-01-24 10:20:40 +00002 * Copyright (c) 2017-2022 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/kernels/CpuDirectConv2dKernel.h"
alerah01c9e519d2022-01-31 19:04:10 +020025#include "src/cpu/kernels/directconv2d/list.h"
Georgios Pinitasddb93bb2020-10-02 16:38:59 +010026
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/Validate.h"
Giorgio Arenac0f54432018-03-16 14:02:34 +000028#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010029#include "src/core/CPP/Validate.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010030#include "src/core/helpers/AutoConfiguration.h"
31#include "src/core/helpers/WindowHelpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010033using namespace arm_compute::detail;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
Manuel Bottini87350f42020-09-15 13:03:34 +010035namespace arm_compute
36{
Manuel Bottini327225d2021-04-13 13:09:30 +010037namespace cpu
38{
39namespace kernels
40{
alerah01c9e519d2022-01-31 19:04:10 +020041static const std::vector<CpuDirectConv2dKernel::DirectConv2dKernel> available_kernels =
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042{
alerah01c9e519d2022-01-31 19:04:10 +020043 {
44 "neon_fp32_nhwc_directconv2d",
45 [](const DataTypeDataLayoutISASelectorData & data) { return data.dt == DataType::F32 && data.dl == DataLayout::NHWC; },
46 REGISTER_FP32_NEON(arm_compute::cpu::kernels::neon_fp32_nhwc_directconv2d)
47 },
48 {
49 "neon_fp32_nchw_directconv2d",
50 [](const DataTypeDataLayoutISASelectorData & data) { return data.dt == DataType::F32 && data.dl == DataLayout::NCHW; },
51 REGISTER_FP32_NEON(arm_compute::cpu::kernels::neon_fp32_nchw_directconv2d)
52 },
53 {
54 "neon_fp16_nchw_directconv2d",
55 [](const DataTypeDataLayoutISASelectorData & data) { return data.dt == DataType::F16 && data.dl == DataLayout::NCHW && data.isa.fp16; },
56 REGISTER_FP16_NEON(arm_compute::cpu::kernels::neon_fp16_nchw_directconv2d)
57 },
58};
59
Manuel Bottini327225d2021-04-13 13:09:30 +010060Status validate_arguments(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *dst, const PadStrideInfo &conv_info)
Michalis Spyrouafa5d812017-11-30 14:25:57 +000061{
Manuel Bottini327225d2021-04-13 13:09:30 +010062 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, weights, dst);
63 ARM_COMPUTE_RETURN_ERROR_ON(src->data_layout() == DataLayout::UNKNOWN);
64 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(src);
65 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::F16, DataType::F32);
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, weights);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000067
Manuel Bottini327225d2021-04-13 13:09:30 +010068 const DataLayout data_layout = src->data_layout();
Giorgio Arenac0f54432018-03-16 14:02:34 +000069 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
70 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
71 const int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
72
Manuel Bottini327225d2021-04-13 13:09:30 +010073 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(channel_idx) != src->dimension(channel_idx));
Giorgio Arenac0f54432018-03-16 14:02:34 +000074 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(width_idx) != weights->dimension(height_idx));
Michalis Spyrouafa5d812017-11-30 14:25:57 +000075 ARM_COMPUTE_RETURN_ERROR_ON(weights->num_dimensions() > 4);
Manuel Bottini327225d2021-04-13 13:09:30 +010076 ARM_COMPUTE_RETURN_ERROR_ON(data_layout == DataLayout::NHWC && src->data_type() != DataType::F32);
Adnan AlSinan0ef2c212022-01-24 10:20:40 +000077 ARM_COMPUTE_UNUSED(width_idx);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000078 // Checks performed when output is configured
Manuel Bottini327225d2021-04-13 13:09:30 +010079 if(dst->total_size() != 0)
Michalis Spyrouafa5d812017-11-30 14:25:57 +000080 {
Manuel Bottini327225d2021-04-13 13:09:30 +010081 TensorShape output_shape = misc::shape_calculator::compute_deep_convolution_shape(*src, *weights, conv_info);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000082
Manuel Bottini327225d2021-04-13 13:09:30 +010083 DataType data_type = src->data_type();
Michalis Spyrouafa5d812017-11-30 14:25:57 +000084
Manuel Bottini327225d2021-04-13 13:09:30 +010085 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(dst->tensor_shape(), output_shape);
86 ARM_COMPUTE_RETURN_ERROR_ON(dst->data_type() != data_type);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000087 }
88
89 return Status{};
90}
91
Adnan AlSinan0ef2c212022-01-24 10:20:40 +000092std::pair<Status, Window> validate_and_configure_window(ITensorInfo *src, ITensorInfo *dst)
Michalis Spyrouafa5d812017-11-30 14:25:57 +000093{
Manuel Bottini327225d2021-04-13 13:09:30 +010094 ARM_COMPUTE_ERROR_ON(src->data_layout() == DataLayout::UNKNOWN);
Adnan AlSinan0ef2c212022-01-24 10:20:40 +000095 ARM_COMPUTE_UNUSED(src);
Michalis Spyrouafa5d812017-11-30 14:25:57 +000096
Giorgio Arenac0f54432018-03-16 14:02:34 +000097 Window win{};
98 bool window_changed = false;
99
Adnan AlSinan0ef2c212022-01-24 10:20:40 +0000100 // Configure window without any padding
101 win = calculate_max_window(*dst, Steps());
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000102
103 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
104 return std::make_pair(err, win);
105}
Manuel Bottini87350f42020-09-15 13:03:34 +0100106
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100107void CpuDirectConv2dKernel::configure(ITensorInfo *src, ITensorInfo *weights, ITensorInfo *dst, const PadStrideInfo &conv_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100108{
Manuel Bottini327225d2021-04-13 13:09:30 +0100109 ARM_COMPUTE_ERROR_ON_NULLPTR(src, weights, dst);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111 _conv_info = conv_info;
Manuel Bottini327225d2021-04-13 13:09:30 +0100112 _data_layout = src->data_layout();
113 _kernel_size = weights->dimension(get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH));
Michalis Spyrou621965e2018-01-08 17:11:26 +0000114
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100115 // Get convolved dimensions
Manuel Bottini327225d2021-04-13 13:09:30 +0100116 TensorShape output_shape = misc::shape_calculator::compute_deep_convolution_shape(*src, *weights, conv_info);
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100117
Manuel Bottini327225d2021-04-13 13:09:30 +0100118 DataType data_type = src->data_type();
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100119
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100120 // Output auto inizialitation if not yet initialized
Manuel Bottini327225d2021-04-13 13:09:30 +0100121 auto_init_if_empty(*dst, output_shape, 1, data_type);
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100122
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000123 // Perform validation step
Manuel Bottini327225d2021-04-13 13:09:30 +0100124 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, weights, dst, conv_info));
Gian Marco Iodice5cb4d6a2017-08-08 10:53:00 +0100125
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000126 // Configure kernel window
Adnan AlSinan0ef2c212022-01-24 10:20:40 +0000127 auto win_config = validate_and_configure_window(src, dst);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000128 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Manuel Bottini327225d2021-04-13 13:09:30 +0100129 ICpuKernel::configure(win_config.second);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000130}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100132Status CpuDirectConv2dKernel::validate(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *dst, const PadStrideInfo &conv_info)
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000133{
Manuel Bottini327225d2021-04-13 13:09:30 +0100134 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, weights, dst, conv_info));
135 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(src->clone().get(),
Adnan AlSinan0ef2c212022-01-24 10:20:40 +0000136 dst->clone().get())
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000137 .first);
Georgios Pinitas898a8062017-09-12 19:19:12 +0100138
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000139 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140}
141
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100142void CpuDirectConv2dKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100143{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100144 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100145 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Manuel Bottini327225d2021-04-13 13:09:30 +0100146 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICpuKernel::window(), window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147
Adnan AlSinan0ef2c212022-01-24 10:20:40 +0000148 auto src = tensors.get_const_tensor(TensorType::ACL_SRC_0);
149 auto weights = tensors.get_const_tensor(TensorType::ACL_SRC_1);
150 auto dst = tensors.get_tensor(TensorType::ACL_DST);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151
alerah01c9e519d2022-01-31 19:04:10 +0200152 const auto *uk = CpuDirectConv2dKernel::get_implementation(DataTypeDataLayoutISASelectorData{ src->info()->data_type(), _data_layout, CPUInfo::get().get_isa() });
153 ARM_COMPUTE_ERROR_ON(uk == nullptr);
154
155 uk->ukernel(window, src, weights, dst, _conv_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100156}
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100157const char *CpuDirectConv2dKernel::name() const
Manuel Bottini327225d2021-04-13 13:09:30 +0100158{
159 return "CpuDirectConvolutionLayerKernel";
160}
alerah01c9e519d2022-01-31 19:04:10 +0200161
162const std::vector<CpuDirectConv2dKernel::DirectConv2dKernel> &CpuDirectConv2dKernel::get_available_kernels()
163{
164 return available_kernels;
165}
166
Manuel Bottini327225d2021-04-13 13:09:30 +0100167} // namespace kernels
168} // namespace cpu
Sheri Zhangac6499a2021-02-10 15:32:38 +0000169} // namespace arm_compute