blob: 3f55a1f34edf38c9cfd3ae70a6077f1cbffbcdbf [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Teresa Charlind1dc09c2021-03-04 15:24:45 +00002 * Copyright (c) 2017-2021 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"
30#include "src/core/helpers/MemoryHelpers.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010031#include "src/cpu/operators/CpuFullyConnected.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +000033namespace arm_compute
34{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010035using namespace arm_compute::experimental;
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000036
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010037struct NEFullyConnectedLayer::Impl
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010039 MemoryGroup memory_group{};
40 IWeightsManager *weights_manager{ nullptr };
SiCongLi2e5fd632020-03-02 15:39:15 +000041
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010042 std::unique_ptr<cpu::CpuFullyConnected> op{ nullptr };
SiCongLi2e5fd632020-03-02 15:39:15 +000043
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010044 const ITensor *original_weights{ nullptr };
SiCongLi2e5fd632020-03-02 15:39:15 +000045
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010046 ITensorPack run_pack{};
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010047 WorkspaceData<Tensor> workspace{};
48 experimental::MemoryRequirements aux_mem_req{};
SiCongLi2e5fd632020-03-02 15:39:15 +000049
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010050 bool is_prepared{ false };
51};
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052
Michalis Spyrouebcebf12020-10-21 00:04:14 +010053NEFullyConnectedLayer::~NEFullyConnectedLayer() = default;
54
Michalis Spyrou1a569a32019-09-10 17:20:34 +010055NEFullyConnectedLayer::NEFullyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager, IWeightsManager *weights_manager)
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010056 : _impl(std::make_unique<Impl>())
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010058 _impl->memory_group = MemoryGroup(std::move(memory_manager));
59 _impl->weights_manager = weights_manager;
Giorgio Arenaa855af12018-07-16 17:20:38 +010060}
61
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010062void NEFullyConnectedLayer::configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output,
63 FullyConnectedLayerInfo fc_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064{
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000065 // Perform validate step
Michele Di Giorgio9c700372020-01-08 11:33:44 +000066 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000067 ARM_COMPUTE_ERROR_THROW_ON(NEFullyConnectedLayer::validate(input->info(),
68 weights->info(),
69 biases != nullptr ? biases->info() : nullptr,
70 output->info(),
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010071 fc_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010073 _impl->op = std::make_unique<cpu::CpuFullyConnected>();
74 _impl->original_weights = weights;
75 _impl->is_prepared = false;
Moritz Pflanzer484e7b32017-08-09 11:43:18 +010076
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010077 _impl->op->configure(input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(), fc_info);
Michalis Spyrou1a569a32019-09-10 17:20:34 +010078
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +010079 if(_impl->weights_manager != nullptr)
80 {
Giorgio Arena73df9312021-08-16 12:29:27 +010081 _impl->weights_manager->manage(_impl->original_weights);
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +010082 }
83
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010084 _impl->aux_mem_req = _impl->op->workspace();
85 _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 +010086 _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 +010087}
88
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010089Status NEFullyConnectedLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output,
90 FullyConnectedLayerInfo fc_info)
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000091{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010092 return cpu::CpuFullyConnected::validate(input, weights, biases, output, fc_info);
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000093}
94
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095void NEFullyConnectedLayer::run()
96{
Georgios Pinitas72219332018-06-05 14:56:06 +010097 prepare();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010099 MemoryGroupResourceScope scope_mg(_impl->memory_group);
100 _impl->op->run(_impl->run_pack);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101}
Georgios Pinitas72219332018-06-05 14:56:06 +0100102
103void NEFullyConnectedLayer::prepare()
104{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100105 if(!_impl->is_prepared)
Georgios Pinitas72219332018-06-05 14:56:06 +0100106 {
Georgios Pinitasfa1db172021-08-12 06:28:09 +0100107 _impl->op->prepare(_impl->run_pack);
Georgios Pinitasef776a82018-07-25 17:57:49 +0100108
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100109 // Release temporary tensors that are only used in prepare stage
110 release_temporaries<Tensor>(_impl->aux_mem_req, _impl->workspace);
111 _impl->is_prepared = true;
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100112
113 // Handle weights managed infrastructure
114 if(_impl->weights_manager != nullptr && _impl->weights_manager->are_weights_managed(_impl->original_weights))
115 {
Giorgio Arena73df9312021-08-16 12:29:27 +0100116 // Ensure that b gets marked as unused (memory released) only after the last function which uses b also finishes its prepare
117 // This is for cases where multiple functions share the same b (weights)
118 // 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 +0100119 const ITensor *original_b = _impl->original_weights;
120 if(!original_b->is_used())
121 {
Giorgio Arena73df9312021-08-16 12:29:27 +0100122 _impl->weights_manager->pre_mark_as_unused(original_b);
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100123 }
124 _impl->original_weights->mark_as_used();
125 _impl->weights_manager->release(_impl->original_weights);
126 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100127 }
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000128}
Georgios Pinitasc6aef872020-04-29 13:37:09 +0100129} // namespace arm_compute