blob: 875d613dcac87e379289a4822c1d0f2b8ed779f3 [file] [log] [blame]
Sheri Zhangfc6744a2021-01-13 15:54:05 +00001/*
Giorgio Arena5ae8d802021-11-18 18:02:13 +00002 * Copyright (c) 2021-2022 Arm Limited.
Sheri Zhangfc6744a2021-01-13 15:54:05 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/kernels/CpuSubKernel.h"
Sheri Zhangfc6744a2021-01-13 15:54:05 +000025
26#include "arm_compute/core/TensorInfo.h"
27#include "arm_compute/core/Validate.h"
28#include "src/core/CPP/Validate.h"
29#include "src/core/common/Registrars.h"
Sheri Zhangfc6744a2021-01-13 15:54:05 +000030#include "src/core/helpers/AutoConfiguration.h"
31#include "src/core/helpers/WindowHelpers.h"
Omar Al Khatib939b21a2022-12-20 14:36:45 +000032#include "src/cpu/kernels/add/generic/neon/impl.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010033#include "src/cpu/kernels/sub/neon/list.h"
Sheri Zhangfc6744a2021-01-13 15:54:05 +000034
Gunes Bayirf16973b2022-11-29 13:12:08 +000035#if defined(ENABLE_FP32_KERNELS)
Fadi Arafeh73bb6b72022-10-06 16:20:14 +000036namespace
37{
Omar Al Khatib939b21a2022-12-20 14:36:45 +000038static constexpr size_t default_mws_N1_fp32_neon = 24385;
39static constexpr size_t default_mws_V1_fp32_neon = 40520;
40} // namespace
Gunes Bayirf16973b2022-11-29 13:12:08 +000041#endif /* ENABLE_FP32_KERNELS */
42
Sheri Zhangfc6744a2021-01-13 15:54:05 +000043namespace arm_compute
44{
45namespace cpu
46{
47namespace kernels
48{
49namespace
50{
Omar Al Khatib939b21a2022-12-20 14:36:45 +000051using CpuSubKernelDataTypeISASelectorData = CpuAddKernelDataTypeISASelectorData;
52using CpuSubKernelDataTypeISASelectorDataPtr = CpuAddKernelDataTypeISASelectorDataPtr;
53
Giorgio Arena5ae8d802021-11-18 18:02:13 +000054static const std::vector<CpuSubKernel::SubKernel> available_kernels =
Sheri Zhangfc6744a2021-01-13 15:54:05 +000055{
56 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010057 "neon_fp32_sub",
Omar Al Khatib939b21a2022-12-20 14:36:45 +000058 [](const CpuSubKernelDataTypeISASelectorData & data) { return (data.dt == DataType::F32); },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000059 REGISTER_FP32_NEON(arm_compute::cpu::sub_same_neon<float>)
60 },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000061 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010062 "neon_fp16_sub",
Omar Al Khatib939b21a2022-12-20 14:36:45 +000063 [](const CpuSubKernelDataTypeISASelectorData & data) { return (data.dt == DataType::F16) && data.isa.fp16; },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000064 REGISTER_FP16_NEON(arm_compute::cpu::sub_same_neon<float16_t>)
65 },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000066 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010067 "neon_u8_sub",
Omar Al Khatib939b21a2022-12-20 14:36:45 +000068 [](const CpuSubKernelDataTypeISASelectorData & data) { return (data.dt == DataType::U8); },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000069 REGISTER_INTEGER_NEON(arm_compute::cpu::sub_same_neon<uint8_t>)
70 },
71 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010072 "neon_s16_sub",
Omar Al Khatib939b21a2022-12-20 14:36:45 +000073 [](const CpuSubKernelDataTypeISASelectorData & data) { return (data.dt == DataType::S16); },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000074 REGISTER_INTEGER_NEON(arm_compute::cpu::sub_same_neon<int16_t>)
75 },
76 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010077 "neon_s32_sub",
Omar Al Khatib939b21a2022-12-20 14:36:45 +000078 [](const CpuSubKernelDataTypeISASelectorData & data) { return (data.dt == DataType::S32); },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000079 REGISTER_INTEGER_NEON(arm_compute::cpu::sub_same_neon<int32_t>)
80 },
81 {
Omar Al Khatib939b21a2022-12-20 14:36:45 +000082 "neon_qu8_sub_fixedpoint",
83 [](const CpuSubKernelDataTypeISASelectorData & data) { return ((data.dt == DataType::QASYMM8) && data.can_use_fixedpoint); },
84 REGISTER_QASYMM8_NEON(arm_compute::cpu::sub_qasymm8_neon_fixedpoint)
85 },
86 {
87 "neon_qs8_sub_fixedpoint",
88 [](const CpuSubKernelDataTypeISASelectorData & data) { return ((data.dt == DataType::QASYMM8_SIGNED) && data.can_use_fixedpoint); },
89 REGISTER_QASYMM8_SIGNED_NEON(arm_compute::cpu::sub_qasymm8_signed_neon_fixedpoint)
90 },
91 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010092 "neon_qu8_sub",
Omar Al Khatib939b21a2022-12-20 14:36:45 +000093 [](const CpuSubKernelDataTypeISASelectorData & data) { return (data.dt == DataType::QASYMM8); },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000094 REGISTER_QASYMM8_NEON(arm_compute::cpu::sub_qasymm8_neon)
95 },
96 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010097 "neon_qs8_sub",
Omar Al Khatib939b21a2022-12-20 14:36:45 +000098 [](const CpuSubKernelDataTypeISASelectorData & data) { return (data.dt == DataType::QASYMM8_SIGNED); },
Sheri Zhangfc6744a2021-01-13 15:54:05 +000099 REGISTER_QASYMM8_SIGNED_NEON(arm_compute::cpu::sub_qasymm8_signed_neon)
100 },
101 {
Georgios Pinitasda816752021-07-02 09:22:14 +0100102 "neon_qs16_sub",
Omar Al Khatib939b21a2022-12-20 14:36:45 +0000103 [](const CpuSubKernelDataTypeISASelectorData & data) { return (data.dt == DataType::QSYMM16); },
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000104 REGISTER_QSYMM16_NEON(arm_compute::cpu::sub_qsymm16_neon)
105 },
106};
107
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000108inline Status validate_arguments(const ITensorInfo &src0, const ITensorInfo &src1, const ITensorInfo &dst, ConvertPolicy policy)
109{
110 ARM_COMPUTE_UNUSED(policy);
111 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(&src0);
112 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src0, 1, DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM16, DataType::S16, DataType::S32, DataType::F16,
113 DataType::F32);
Georgios Pinitasda816752021-07-02 09:22:14 +0100114 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&src0, &src1);
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000115
Omar Al Khatib939b21a2022-12-20 14:36:45 +0000116 const auto can_use_fixedpoint = sub_q8_neon_fixedpoint_possible(&src0, &src1, &dst);
117 const auto uk = CpuSubKernel::get_implementation<CpuSubKernelDataTypeISASelectorData>(CpuSubKernelDataTypeISASelectorData{ src0.data_type(), CPUInfo::get().get_isa(), can_use_fixedpoint });
Giorgio Arena5ae8d802021-11-18 18:02:13 +0000118
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000119 ARM_COMPUTE_RETURN_ERROR_ON(uk == nullptr || uk->ukernel == nullptr);
120
121 const TensorShape out_shape = TensorShape::broadcast_shape(src0.tensor_shape(), src1.tensor_shape());
122 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
123
Georgios Pinitasda816752021-07-02 09:22:14 +0100124 ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_data_type_quantized(src0.data_type()) && (policy == ConvertPolicy::WRAP),
125 "Convert policy cannot be WRAP if datatype is quantized");
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000126
127 // Validate in case of configured dst
128 if(dst.total_size() > 0)
129 {
Georgios Pinitasda816752021-07-02 09:22:14 +0100130 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&src0, &dst);
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000131 ARM_COMPUTE_RETURN_ERROR_ON_MSG(detail::have_different_dimensions(out_shape, dst.tensor_shape(), 0),
132 "Wrong shape for dst");
133 }
134 return Status{};
135}
136} // namespace
137
138void CpuSubKernel::configure(const ITensorInfo *src0, const ITensorInfo *src1, ITensorInfo *dst, ConvertPolicy policy)
139{
140 ARM_COMPUTE_ERROR_ON_NULLPTR(src0, src1, dst);
141 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*src0, *src1, *dst, policy));
142
SiCongLic7b1e842021-02-22 14:28:33 +0000143 const TensorShape &out_shape = TensorShape::broadcast_shape(src0->tensor_shape(), src1->tensor_shape());
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000144
145 // Auto initialize dst if not initialized
146 set_shape_if_empty(*dst, out_shape);
Georgios Pinitasda816752021-07-02 09:22:14 +0100147 set_data_type_if_unknown(*dst, src0->data_type());
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000148
Omar Al Khatib939b21a2022-12-20 14:36:45 +0000149 const auto can_use_fixedpoint = sub_q8_neon_fixedpoint_possible(src0, src1, dst);
150 const auto uk = CpuSubKernel::get_implementation<CpuSubKernelDataTypeISASelectorData>(CpuSubKernelDataTypeISASelectorData{ src0->data_type(), CPUInfo::get().get_isa(), can_use_fixedpoint });
151
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100152 ARM_COMPUTE_ERROR_ON_NULLPTR(uk);
153
154 _policy = policy;
155 _run_method = uk->ukernel;
156 _name = std::string("CpuSubKernel").append("/").append(uk->name);
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000157
158 // CpuSubKernel doesn't need padding so update_window_and_padding() can be skipped
Jakub Sujak842ad212022-09-17 13:08:56 +0100159 Window win;
160 std::tie(win, _split_dimension) = calculate_squashed_or_max_window(*src0, *src1);
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000161
162 ICpuKernel::configure(win);
163}
164
Fadi Arafeh73bb6b72022-10-06 16:20:14 +0000165size_t CpuSubKernel::get_mws(const CPUInfo &platform, size_t thread_count) const
166{
167 ARM_COMPUTE_UNUSED(thread_count);
168
169#if defined(ENABLE_FP32_KERNELS)
170 if(this->_run_method == &sub_same_neon<float>)
171 {
172 size_t mws = ICPPKernel::default_mws;
173 if(platform.get_cpu_model() == CPUModel::N1)
174 {
175 mws = default_mws_N1_fp32_neon;
176 }
177 else if(platform.get_cpu_model() == CPUModel::V1)
178 {
179 mws = default_mws_V1_fp32_neon;
180 }
181 else
182 {
183 return ICPPKernel::default_mws;
184 }
185
186 // tensor is 1D or was re-interpreted as 1D
187 if(this->window().shape().num_dimensions() == 1)
188 {
189 return mws;
190 }
191 else
192 {
193 // scale mws down by the number of elements along all the dimensions (x, z, w, etc) except the one
194 // that we parallelize along (the y dimension). This allows for parallelization when the Y_SIZE is small
195 // but the other sizes are large, which boosts performance.
196 mws = static_cast<size_t>(mws / (this->window().num_iterations_total() / this->window().num_iterations(1)));
197 return std::max(static_cast<size_t>(1), mws);
198 }
199 }
Omar Al Khatib939b21a2022-12-20 14:36:45 +0000200#else /* ENABLE_FP32_KERNELS */
Fadi Arafeh73bb6b72022-10-06 16:20:14 +0000201 ARM_COMPUTE_UNUSED(platform);
202#endif /* ENABLE_FP32_KERNELS */
203 return ICPPKernel::default_mws;
204}
205
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000206Status CpuSubKernel::validate(const ITensorInfo *src0, const ITensorInfo *src1, const ITensorInfo *dst, ConvertPolicy policy)
207{
208 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src0, src1, dst);
209 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*src0, *src1, *dst, policy));
210
211 return Status{};
212}
213
214void CpuSubKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
215{
216 ARM_COMPUTE_UNUSED(info);
217 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
218 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICpuKernel::window(), window);
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100219 ARM_COMPUTE_ERROR_ON(_run_method == nullptr);
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000220
221 const ITensor *src0 = tensors.get_const_tensor(TensorType::ACL_SRC_0);
222 const ITensor *src1 = tensors.get_const_tensor(TensorType::ACL_SRC_1);
223 ITensor *dst = tensors.get_tensor(TensorType::ACL_DST);
224
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100225 _run_method(src0, src1, dst, _policy, window);
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000226}
227
228const char *CpuSubKernel::name() const
229{
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100230 return _name.c_str();
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000231}
Giorgio Arena5ae8d802021-11-18 18:02:13 +0000232
233const std::vector<CpuSubKernel::SubKernel> &CpuSubKernel::get_available_kernels()
234{
235 return available_kernels;
236}
237
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000238} // namespace kernels
239} // namespace cpu
240} // namespace arm_compute