blob: e75b082ca5acf358581c70ee19a59f4a73ccfd0f [file] [log] [blame]
Georgios Pinitas47d39dc2019-03-11 14:03:23 +00001/*
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01002 * Copyright (c) 2019-2021 Arm Limited.
Georgios Pinitas47d39dc2019-03-11 14:03:23 +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 */
24
Georgios Pinitas7891a732021-08-20 21:39:25 +010025#include "src/cpu/operators/CpuDepthwiseConv2dAssemblyDispatch.h"
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000026
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000027#include "arm_compute/core/ITensorInfo.h"
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000028#include "arm_compute/runtime/NEON/NEScheduler.h"
ramelg013ae3d882021-09-12 23:07:47 +010029#include "src/common/utils/Log.h"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000030#include "src/core/CPP/Validate.h"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000031#include "src/core/helpers/AutoConfiguration.h"
32#include "src/core/utils/AssemblyUtils.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010033#include "src/cpu/kernels/internal/CpuDepthwiseConv2dAssemblyWrapperKernel.h"
Georgios Pinitas4c758512019-07-10 19:49:11 +010034
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000035namespace arm_compute
36{
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +010037namespace cpu
38{
Manuel Bottinib4bb6a02021-05-24 16:01:32 +010039struct CpuDepthwiseConv2dAssemblyDispatch::LocalImpl
Georgios Pinitas30271c72019-06-24 14:56:34 +010040{
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000041 std::unique_ptr<kernels::CpuDepthwiseConv2dAssemblyWrapperKernel> asm_kernel{ nullptr };
42 bool is_prepared{ false };
43 experimental::MemoryRequirements mem_req{};
Georgios Pinitas30271c72019-06-24 14:56:34 +010044};
45
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000046#ifndef DOXYGEN_SKIP_THIS
Manuel Bottinib4bb6a02021-05-24 16:01:32 +010047CpuDepthwiseConv2dAssemblyDispatch::CpuDepthwiseConv2dAssemblyDispatch()
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +010048 : _pImpl(std::make_unique<LocalImpl>())
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000049{
50}
51#endif /* DOXYGEN_SKIP_THIS */
52
Manuel Bottinib4bb6a02021-05-24 16:01:32 +010053CpuDepthwiseConv2dAssemblyDispatch::~CpuDepthwiseConv2dAssemblyDispatch() = default;
Georgios Pinitas30271c72019-06-24 14:56:34 +010054
Manuel Bottinib4bb6a02021-05-24 16:01:32 +010055void CpuDepthwiseConv2dAssemblyDispatch::configure(const ITensorInfo *src,
56 const ITensorInfo *weights,
57 const ITensorInfo *bias,
58 ITensorInfo *dst,
59 const ConvolutionInfo &info)
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000060{
ramelg013ae3d882021-09-12 23:07:47 +010061 ARM_COMPUTE_LOG_PARAMS(src, weights, bias, dst, info);
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000062 const CPUInfo &ci = NEScheduler::get().cpu_info();
63 const unsigned int num_threads = NEScheduler::get().num_threads();
64 _pImpl->is_prepared = false;
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000065
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000066 // If we don't support a combination of data types, silently return: it is the caller's responsibility to check if configure() was successful via is_configured()
67 if(!CpuDepthwiseConv2dAssemblyDispatch::validate(src, weights, bias, dst, info))
68 {
69 return;
70 }
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000071
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000072 auto dwc_wrapper = std::make_unique<kernels::CpuDepthwiseConv2dAssemblyWrapperKernel>();
73 ARM_COMPUTE_ERROR_ON(dwc_wrapper == nullptr);
74 dwc_wrapper->configure(src, weights, bias, dst, info, ci);
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000075
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000076 // Compute memory requirements for assembly kernels
77 constexpr size_t alignment = 4096;
78 _pImpl->mem_req.push_back({ TensorType::ACL_INT_0, dwc_wrapper->get_working_size(num_threads, src->dimension(0)), alignment });
79 _pImpl->mem_req.push_back({ TensorType::ACL_INT_1, dwc_wrapper->get_storage_size(), alignment });
80 _pImpl->asm_kernel = std::move(dwc_wrapper);
81}
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000082
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000083Status CpuDepthwiseConv2dAssemblyDispatch::validate(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *bias, const ITensorInfo *dst, const ConvolutionInfo &info)
84{
85 return kernels::CpuDepthwiseConv2dAssemblyWrapperKernel::validate(src, weights, bias, dst, info);
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000086}
87
Manuel Bottinib4bb6a02021-05-24 16:01:32 +010088experimental::MemoryRequirements CpuDepthwiseConv2dAssemblyDispatch::workspace() const
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +010089{
90 return _pImpl->mem_req;
91}
92
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000093bool CpuDepthwiseConv2dAssemblyDispatch::is_activation_supported(const ActivationLayerInfo &activation)
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000094{
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000095 arm_gemm::Activation act = assembly_utils::map_to_arm_gemm_activation(activation);
96 return act.type != arm_gemm::Activation::Type::None;
Georgios Pinitas47d39dc2019-03-11 14:03:23 +000097}
98
Manuel Bottinib4bb6a02021-05-24 16:01:32 +010099void CpuDepthwiseConv2dAssemblyDispatch::run(ITensorPack &tensors)
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000100{
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000101 ARM_COMPUTE_ERROR_ON_MSG(tensors.empty(), "No inputs provided");
102
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100103 prepare(tensors);
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000104
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000105 NEScheduler::get().schedule_op(_pImpl->asm_kernel.get(), Window::DimY, _pImpl->asm_kernel->window(), tensors);
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000106}
107
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100108void CpuDepthwiseConv2dAssemblyDispatch::prepare(ITensorPack &tensors)
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000109{
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100110 if(!_pImpl->is_prepared)
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000111 {
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000112 // Pack weights and bias
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000113 const ITensor *weights = tensors.get_const_tensor(TensorType::ACL_SRC_1);
114 const ITensor *bias = tensors.get_const_tensor(TensorType::ACL_SRC_2);
115 ITensor *storage = tensors.get_tensor(TensorType::ACL_INT_1);
116
117 const auto weights_ptr = weights->buffer() + weights->info()->offset_first_element_in_bytes();
118 const auto bias_ptr = (bias) ? bias->buffer() + bias->info()->offset_first_element_in_bytes() : nullptr;
119 auto parameters_ptr = storage->buffer() + storage->info()->offset_first_element_in_bytes();
120
121 const auto weights_shape = weights->info()->tensor_shape();
122 const auto weights_padding = weights->info()->padding();
123
124 const size_t ld_weights_col = weights_shape[0] + weights_padding.left + weights_padding.right;
125 const size_t ld_weights_row = ld_weights_col * (weights_shape[1] + weights_padding.top + weights_padding.bottom);
126 _pImpl->asm_kernel->pack_parameters(parameters_ptr, bias_ptr, weights_ptr, ld_weights_col, ld_weights_row);
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000127
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100128 weights->mark_as_unused();
129 if(bias != nullptr)
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000130 {
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100131 bias->mark_as_unused();
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000132 }
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100133 _pImpl->is_prepared = true;
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000134 }
135}
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100136} // namespace cpu
Georgios Pinitas47d39dc2019-03-11 14:03:23 +0000137} // namespace arm_compute