blob: fd1a042bb473ed88e71bee44bb783b849c89d59b [file] [log] [blame]
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +01001/*
Michalis Spyrou16aa4742022-06-29 15:13:45 +01002 * Copyright (c) 2021-2022 Arm Limited.
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +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/operators/CpuGemmDirectConv2d.h"
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010025
26#include "arm_compute/core/utils/misc/ShapeCalculator.h"
27#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
28#include "arm_compute/runtime/FunctionDescriptors.h"
ramelg013ae3d882021-09-12 23:07:47 +010029#include "src/common/utils/Log.h"
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010030#include "src/core/helpers/MemoryHelpers.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010031#include "src/cpu/utils/CpuAuxTensorHandler.h"
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010032
33#include "support/Cast.h"
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010034
35#include <set>
36
37namespace arm_compute
38{
39namespace cpu
40{
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010041using namespace arm_compute::experimental;
42using namespace arm_compute::utils::cast;
43
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010044namespace
45{
46GEMMLowpOutputStageInfo calculate_output_stage_metadata(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *dst, const ActivationLayerInfo &act)
47{
48 // Since we need negative offsets for computing convolution, we need to change QuantizationInfo()
49 // Extract and negate input and weights offset
50 const QuantizationInfo iqinfo = src->quantization_info();
51 const QuantizationInfo wqinfo = weights->quantization_info();
52 const QuantizationInfo oqinfo = (dst->total_size() == 0) ? iqinfo : dst->quantization_info();
53 const UniformQuantizationInfo uoqinfo = oqinfo.uniform();
54 const DataType data_type = src->data_type();
55 // Merge activation with output stage
56 const std::set<ActivationLayerInfo::ActivationFunction> supported_acts = { ActivationLayerInfo::ActivationFunction::RELU,
57 ActivationLayerInfo::ActivationFunction::BOUNDED_RELU,
58 ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU
59 };
Sang-Hoon Parkb3be4572021-05-18 10:46:00 +010060 PixelValue type_min{};
61 PixelValue type_max{};
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010062 std::tie(type_min, type_max) = get_min_max(data_type);
Michele Di Giorgio8ae3cda2021-06-07 15:30:26 +010063 int32_t min_activation = type_min.get<int32_t>();
64 int32_t max_activation = type_max.get<int32_t>();
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010065 if(supported_acts.count(act.activation()) != 0)
66 {
67 std::tie(min_activation, max_activation) = get_quantized_activation_min_max(act, data_type, uoqinfo);
68 }
69 GEMMLowpOutputStageInfo os_info;
70 os_info.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
71 os_info.gemmlowp_offset = uoqinfo.offset;
72 os_info.gemmlowp_min_bound = min_activation;
73 os_info.gemmlowp_max_bound = max_activation;
74 os_info.is_quantized_per_channel = (weights->data_type() == DataType::QSYMM8_PER_CHANNEL);
75 quantization::calculate_quantized_multipliers(iqinfo, wqinfo, oqinfo, os_info);
76 return os_info;
77}
78cpu::AsmGemmInfo init_assembly_metadata(const Conv2dInfo &info, bool is_indirect)
79{
80 cpu::AsmGemmInfo asm_info;
81 asm_info.method = is_indirect ? cpu::AsmConvMethod::Indirect : cpu::AsmConvMethod::Conv;
82 asm_info.ps_info = info.conv_info;
83 asm_info.activation_info = info.act_info;
84 asm_info.depth_output_gemm3d = true;
85 asm_info.reinterpret_input_as_3d = true;
86 asm_info.padding_top = info.conv_info.pad_top();
87 asm_info.padding_left = info.conv_info.pad_left();
88 asm_info.padding_value = 0.f;
89 asm_info.negated_offsets = false;
Georgios Pinitas4ee8b152021-07-16 16:16:43 +010090 asm_info.fast_mode = info.enable_fast_math;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010091 return asm_info;
92}
93} // namespace
94
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010095CpuGemmDirectConv2d::CpuGemmDirectConv2d()
96 : _gemm_asm_func(std::make_unique<CpuGemmAssemblyDispatch>()),
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010097 _activation_func(std::make_unique<CpuActivation>()),
98 _weights_permute_func(std::make_unique<CpuPermute>()),
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010099 _aux_mem(AuxTensorIdx::Count),
100 _perm_weights(),
101 _run_activation(false),
102 _is_prepared(false)
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100103{
104}
105
106CpuGemmDirectConv2d::~CpuGemmDirectConv2d() = default;
107
108void CpuGemmDirectConv2d::configure(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, ITensorInfo *dst, const Conv2dInfo &info)
109{
110 ARM_COMPUTE_ERROR_ON_NULLPTR(src, weights, dst);
111 ARM_COMPUTE_ERROR_THROW_ON(CpuGemmDirectConv2d::validate(src,
112 weights,
113 biases != nullptr ? biases : nullptr,
114 dst,
115 info));
ramelg013ae3d882021-09-12 23:07:47 +0100116 ARM_COMPUTE_LOG_PARAMS(src, weights, biases, dst, info);
117
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100118 _run_activation = info.act_info.enabled() && !_gemm_asm_func->is_activation_supported(info.act_info);
119 _is_prepared = false;
120
121 _weights_permute_func->configure(weights, &_perm_weights, PermutationVector{ 3, 0, 1, 2 });
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100122
123 // Configure assembly dispatch
124 cpu::AsmGemmInfo asm_info = init_assembly_metadata(info, false);
125 if(is_data_type_quantized(src->data_type()))
126 {
127 asm_info.output_stage = calculate_output_stage_metadata(src, weights, dst, info.act_info);
128 }
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100129 _gemm_asm_func->configure(src, &_perm_weights, biases, dst, asm_info);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100130
131 // Configure activation
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100132 if(_run_activation)
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100133 {
134 _activation_func->configure(dst, nullptr, info.act_info);
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100135 }
136
137 // Add auxiliary memory requirements of the assembly dispatch
138 auto asm_mem_req = _gemm_asm_func->workspace();
139 _aux_mem[AsmGemmWorkspace] = asm_mem_req[AsmGemmWorkspace];
140 _aux_mem[Pretranspose] = asm_mem_req[Pretranspose];
141
142 if(_aux_mem[Pretranspose].size > 0)
143 {
144 // Release permuted weights at the of prepare as they are further transposed by the assembly dispatch
145 _aux_mem[PermutedWeights] = MemoryInfo(offset_int_vec(PermutedWeights), MemoryLifetime::Prepare, weights->total_size());
146 }
147 else
148 {
149 _aux_mem[PermutedWeights] = MemoryInfo(offset_int_vec(PermutedWeights), MemoryLifetime::Persistent, weights->total_size());
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100150 }
151}
152Status CpuGemmDirectConv2d::validate(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *dst, const Conv2dInfo &info)
153{
154 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, weights, dst);
155 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::BFLOAT16, DataType::F16, DataType::F32);
156 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weights, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8_PER_CHANNEL, DataType::BFLOAT16, DataType::F16, DataType::F32);
157 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(src, weights);
158 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.num_groups > 1, "Grouping (num_groups != 1) is not supported on Neon");
159 ARM_COMPUTE_RETURN_ERROR_ON_MSG(src->data_layout() != DataLayout::NHWC, "Data layout supported is NHWC");
160 const DataType data_type = src->data_type();
161 const TensorShape i_shape = src->tensor_shape();
162 const TensorShape w_shape = weights->tensor_shape();
163 ARM_COMPUTE_RETURN_ERROR_ON(w_shape[0] != i_shape[0]);
164 ARM_COMPUTE_RETURN_ERROR_ON(info.dilation != Size2D(1U, 1U));
165 ARM_COMPUTE_RETURN_ERROR_ON(weights->num_dimensions() > 4);
166 // Validate biases
167 if(biases != nullptr)
168 {
169 if(is_data_type_quantized_asymmetric(data_type))
170 {
171 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::S32);
172 }
173 else if(data_type == DataType::BFLOAT16)
174 {
175 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(biases, 1, DataType::F32);
176 }
177 else
178 {
179 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, biases);
180 }
181 ARM_COMPUTE_RETURN_ERROR_ON(biases->dimension(0) != weights->dimension(3));
182 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() > 1);
183 }
184
185 cpu::AsmGemmInfo asm_info = init_assembly_metadata(info, false);
186 ARM_COMPUTE_RETURN_ON_ERROR(cpu::CpuGemmAssemblyDispatch::validate(src, weights, biases, dst, asm_info));
187 return Status{};
188}
189void CpuGemmDirectConv2d::run(ITensorPack &tensors)
190{
191 prepare(tensors);
192
193 _gemm_asm_func->run(tensors);
194 if(_run_activation)
195 {
Michalis Spyrou16aa4742022-06-29 15:13:45 +0100196 ITensor *io = tensors.get_tensor(ACL_DST);
197 ITensorPack pack{ { ACL_SRC, io }, { ACL_DST, io } };
198 _activation_func->run(pack);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100199 }
Michele Di Giorgio8ae3cda2021-06-07 15:30:26 +0100200}
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100201
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100202void CpuGemmDirectConv2d::prepare(ITensorPack &tensors)
203{
204 if(!_is_prepared)
205 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100206 const ITensor *weights = tensors.get_const_tensor(ACL_SRC_1);
207 ITensor *weights_aux = utils::cast::polymorphic_cast<ITensor *>(tensors.get_tensor(offset_int_vec(PermutedWeights)));
208 ARM_COMPUTE_ERROR_ON_NULLPTR(weights, weights_aux);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100209
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100210 CpuAuxTensorHandler permuted_weights(_perm_weights, *weights_aux);
211 ITensorPack permute_tensors{ { ACL_SRC, weights }, { ACL_DST, permuted_weights.get() } };
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100212 _weights_permute_func->run(permute_tensors);
213
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100214 tensors.add_const_tensor(ACL_SRC_1, permuted_weights.get());
215 // Call prepare of assembly dispatch
216 _gemm_asm_func->prepare(tensors);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100217
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100218 _is_prepared = true;
219 }
220}
221
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100222experimental::MemoryRequirements CpuGemmDirectConv2d::workspace() const
223{
224 return _aux_mem;
225}
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100226} // namespace cpu
227} // namespace arm_compute