blob: 6cca02eea9a03018f32f1ddaea6681780ce7cda2 [file] [log] [blame]
Georgios Pinitasc0b6f762020-11-02 01:37:17 +00001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2020-2021 Arm Limited.
Georgios Pinitasc0b6f762020-11-02 01:37:17 +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#include "arm_compute/runtime/NEON/functions/NEGEMMConv2d.h"
Georgios Pinitasec2256b2020-12-03 18:51:58 +000025
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000026#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010027#include "arm_compute/runtime/Tensor.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010029#include "src/core/helpers/MemoryHelpers.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010030#include "src/cpu/operators/CpuGemmDirectConv2d.h"
Georgios Pinitas40f51a62020-11-21 03:04:18 +000031
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000032namespace arm_compute
33{
Michele Di Giorgio8ae3cda2021-06-07 15:30:26 +010034using OperatorType = cpu::CpuGemmDirectConv2d;
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010035using namespace arm_compute::experimental;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010036
37struct NEGEMMConv2d::Impl
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000038{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010039 const ITensor *weights{nullptr};
40 std::unique_ptr<OperatorType> op{nullptr};
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010041 ITensorPack run_pack{};
42 ITensorPack prep_pack{};
43 WorkspaceData<Tensor> workspace{};
44 MemoryGroup memory_group{};
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045 bool is_prepared{false};
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010046 experimental::MemoryRequirements aux_mem_req{};
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010047};
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000048
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010049NEGEMMConv2d::NEGEMMConv2d(const std::shared_ptr<IMemoryManager> &memory_manager) : _impl(std::make_unique<Impl>())
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000050{
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010051 _impl->memory_group = MemoryGroup(memory_manager);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000052}
Georgios Pinitasec2256b2020-12-03 18:51:58 +000053
54NEGEMMConv2d::~NEGEMMConv2d() = default;
55
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010056void NEGEMMConv2d::configure(
57 ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const Conv2dInfo &info)
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000058{
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010059 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
60
61 _impl->weights = weights;
62 _impl->is_prepared = false;
63 _impl->op = std::make_unique<OperatorType>();
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000064
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010065 _impl->op->configure(input->info(), weights->info(), biases != nullptr ? biases->info() : nullptr, output->info(),
66 info);
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010067
68 _impl->aux_mem_req = _impl->op->workspace();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010069 _impl->run_pack = {{TensorType::ACL_SRC_0, input}, {TensorType::ACL_SRC_2, biases}, {TensorType::ACL_DST, output}};
70 _impl->prep_pack = {{TensorType::ACL_SRC_1, weights}, {TensorType::ACL_SRC_2, biases}};
71 _impl->workspace =
72 manage_workspace<Tensor>(_impl->op->workspace(), _impl->memory_group, _impl->run_pack, _impl->prep_pack);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000073}
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010074
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010075Status NEGEMMConv2d::validate(const ITensorInfo *input,
76 const ITensorInfo *weights,
77 const ITensorInfo *biases,
78 const ITensorInfo *output,
79 const Conv2dInfo &info)
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000080{
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010081 return OperatorType::validate(input, weights, biases, output, info);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000082}
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010083
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000084void NEGEMMConv2d::run()
85{
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010086 prepare();
87
88 MemoryGroupResourceScope scope_mg(_impl->memory_group);
89 _impl->op->run(_impl->run_pack);
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000090}
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010091
Georgios Pinitasc0b6f762020-11-02 01:37:17 +000092void NEGEMMConv2d::prepare()
93{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010094 if (!_impl->is_prepared)
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010095 {
96 _impl->op->prepare(_impl->prep_pack);
97
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010098 auto has_reshape =
99 std::find_if(_impl->aux_mem_req.begin(), _impl->aux_mem_req.end(),
100 [](const MemoryInfo &m) -> bool { return m.lifetime == MemoryLifetime::Persistent; });
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100101
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100102 if (has_reshape != std::end(_impl->aux_mem_req))
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100103 {
104 _impl->weights->mark_as_unused();
105 }
106 else
107 {
108 _impl->run_pack.add_const_tensor(ACL_SRC_1, _impl->weights);
109 }
110
111 // Release temporary tensors that are only used in prepare stage
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100112 release_temporaries<Tensor>(_impl->aux_mem_req, _impl->workspace);
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100113 _impl->is_prepared = true;
114 }
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000115}
116} // namespace arm_compute