blob: 919e5ed84fe4bf3b2fca120142db9c3ad27ae7d8 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Jonathan Deakin464ed202023-01-12 11:41:14 +00002 * Copyright (c) 2017-2023 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 */
24#include "arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h"
25
Teresa Charlind1dc09c2021-03-04 15:24:45 +000026#include "arm_compute/core/ITensorPack.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/Validate.h"
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010028#include "arm_compute/runtime/MemoryGroup.h"
29#include "arm_compute/runtime/NEON/functions/NEConvertFullyConnectedWeights.h"
ramelg01cbbb0382021-09-17 17:36:57 +010030#include "src/common/utils/Log.h"
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010031#include "src/core/helpers/MemoryHelpers.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010032#include "src/cpu/operators/CpuFullyConnected.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +000034namespace arm_compute
35{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010036using namespace arm_compute::experimental;
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000037
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010038struct NEFullyConnectedLayer::Impl
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010040 MemoryGroup memory_group{};
41 IWeightsManager *weights_manager{ nullptr };
SiCongLi2e5fd632020-03-02 15:39:15 +000042
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010043 std::unique_ptr<cpu::CpuFullyConnected> op{ nullptr };
SiCongLi2e5fd632020-03-02 15:39:15 +000044
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010045 const ITensor *original_weights{ nullptr };
SiCongLi2e5fd632020-03-02 15:39:15 +000046
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010047 ITensorPack run_pack{};
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010048 WorkspaceData<Tensor> workspace{};
49 experimental::MemoryRequirements aux_mem_req{};
SiCongLi2e5fd632020-03-02 15:39:15 +000050
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010051 bool is_prepared{ false };
52};
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053
Michalis Spyrouebcebf12020-10-21 00:04:14 +010054NEFullyConnectedLayer::~NEFullyConnectedLayer() = default;
55
Michalis Spyrou1a569a32019-09-10 17:20:34 +010056NEFullyConnectedLayer::NEFullyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager, IWeightsManager *weights_manager)
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010057 : _impl(std::make_unique<Impl>())
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010059 _impl->memory_group = MemoryGroup(std::move(memory_manager));
60 _impl->weights_manager = weights_manager;
Giorgio Arenaa855af12018-07-16 17:20:38 +010061}
62
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010063void NEFullyConnectedLayer::configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output,
Milos Puzovic13b623e2022-07-27 17:53:21 +000064 FullyConnectedLayerInfo fc_info, const WeightsInfo &weights_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065{
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000066 // Perform validate step
Michele Di Giorgio9c700372020-01-08 11:33:44 +000067 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000068 ARM_COMPUTE_ERROR_THROW_ON(NEFullyConnectedLayer::validate(input->info(),
69 weights->info(),
70 biases != nullptr ? biases->info() : nullptr,
71 output->info(),
Jonathan Deakin464ed202023-01-12 11:41:14 +000072 fc_info,
73 weights_info));
ramelg01cbbb0382021-09-17 17:36:57 +010074 ARM_COMPUTE_LOG_PARAMS(input, weights, biases, output, fc_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010075
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010076 _impl->op = std::make_unique<cpu::CpuFullyConnected>();
77 _impl->original_weights = weights;
78 _impl->is_prepared = false;
Moritz Pflanzer484e7b32017-08-09 11:43:18 +010079
Milos Puzovic13b623e2022-07-27 17:53:21 +000080 _impl->op->configure(input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(), fc_info, weights_info);
Michalis Spyrou1a569a32019-09-10 17:20:34 +010081
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +010082 if(_impl->weights_manager != nullptr)
83 {
Giorgio Arena73df9312021-08-16 12:29:27 +010084 _impl->weights_manager->manage(_impl->original_weights);
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +010085 }
86
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010087 _impl->aux_mem_req = _impl->op->workspace();
88 _impl->run_pack = { { ACL_SRC_0, input }, { ACL_SRC_1, weights }, { ACL_SRC_2, biases }, { ACL_DST, output } };
Georgios Pinitasfa1db172021-08-12 06:28:09 +010089 _impl->workspace = manage_workspace<Tensor>(_impl->aux_mem_req, _impl->memory_group, _impl->run_pack, _impl->run_pack);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090}
91
Milos Puzovic13b623e2022-07-27 17:53:21 +000092Status NEFullyConnectedLayer::has_opt_impl(arm_compute::WeightFormat &expected_weight_format, const ITensorInfo *input, const ITensorInfo *weights,
93 const ITensorInfo *biases, const ITensorInfo *output, const FullyConnectedLayerInfo &fc_info,
94 const WeightsInfo &weights_info)
95{
96 return cpu::CpuFullyConnected::has_opt_impl(expected_weight_format, input, weights, biases, output, fc_info, weights_info);
97}
98
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010099Status NEFullyConnectedLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
Jonathan Deakin464ed202023-01-12 11:41:14 +0000100 FullyConnectedLayerInfo fc_info, const WeightsInfo &weights_info)
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000101{
Jonathan Deakin464ed202023-01-12 11:41:14 +0000102 return cpu::CpuFullyConnected::validate(input, weights, biases, output, fc_info, weights_info);
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000103}
104
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105void NEFullyConnectedLayer::run()
106{
Georgios Pinitas72219332018-06-05 14:56:06 +0100107 prepare();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100108
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100109 MemoryGroupResourceScope scope_mg(_impl->memory_group);
110 _impl->op->run(_impl->run_pack);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111}
Georgios Pinitas72219332018-06-05 14:56:06 +0100112
113void NEFullyConnectedLayer::prepare()
114{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100115 if(!_impl->is_prepared)
Georgios Pinitas72219332018-06-05 14:56:06 +0100116 {
Georgios Pinitasfa1db172021-08-12 06:28:09 +0100117 _impl->op->prepare(_impl->run_pack);
Georgios Pinitasef776a82018-07-25 17:57:49 +0100118
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100119 // Release temporary tensors that are only used in prepare stage
120 release_temporaries<Tensor>(_impl->aux_mem_req, _impl->workspace);
121 _impl->is_prepared = true;
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100122
123 // Handle weights managed infrastructure
124 if(_impl->weights_manager != nullptr && _impl->weights_manager->are_weights_managed(_impl->original_weights))
125 {
Giorgio Arena73df9312021-08-16 12:29:27 +0100126 // Ensure that b gets marked as unused (memory released) only after the last function which uses b also finishes its prepare
127 // This is for cases where multiple functions share the same b (weights)
128 // Therefore when a function marks original b as unused, we pre-mark it in weights manager, and mark it back to used so that it doesn't get released before its last reference
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100129 const ITensor *original_b = _impl->original_weights;
130 if(!original_b->is_used())
131 {
Giorgio Arena73df9312021-08-16 12:29:27 +0100132 _impl->weights_manager->pre_mark_as_unused(original_b);
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100133 }
134 _impl->original_weights->mark_as_used();
135 _impl->weights_manager->release(_impl->original_weights);
136 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100137 }
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000138}
Georgios Pinitasc6aef872020-04-29 13:37:09 +0100139} // namespace arm_compute