blob: 2656d0fa0fec959b63d9f171cf3a5b4968214d96 [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"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010030
ramelg01cbbb0382021-09-17 17:36:57 +010031#include "src/common/utils/Log.h"
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010032#include "src/core/helpers/MemoryHelpers.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010033#include "src/cpu/operators/CpuFullyConnected.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +000035namespace arm_compute
36{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010037using namespace arm_compute::experimental;
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000038
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010039struct NEFullyConnectedLayer::Impl
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010041 MemoryGroup memory_group{};
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010042 IWeightsManager *weights_manager{nullptr};
SiCongLi2e5fd632020-03-02 15:39:15 +000043
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010044 std::unique_ptr<cpu::CpuFullyConnected> op{nullptr};
SiCongLi2e5fd632020-03-02 15:39:15 +000045
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010046 const ITensor *original_weights{nullptr};
SiCongLi2e5fd632020-03-02 15:39:15 +000047
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010048 ITensorPack run_pack{};
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010049 WorkspaceData<Tensor> workspace{};
50 experimental::MemoryRequirements aux_mem_req{};
SiCongLi2e5fd632020-03-02 15:39:15 +000051
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010052 bool is_prepared{false};
53 bool dynamic_weights{false};
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010054};
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055
Michalis Spyrouebcebf12020-10-21 00:04:14 +010056NEFullyConnectedLayer::~NEFullyConnectedLayer() = default;
57
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010058NEFullyConnectedLayer::NEFullyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager,
59 IWeightsManager *weights_manager)
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010060 : _impl(std::make_unique<Impl>())
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061{
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010062 _impl->memory_group = MemoryGroup(std::move(memory_manager));
63 _impl->weights_manager = weights_manager;
Giorgio Arenaa855af12018-07-16 17:20:38 +010064}
65
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010066void NEFullyConnectedLayer::configure(const ITensor *input,
67 const ITensor *weights,
68 const ITensor *biases,
69 ITensor *output,
70 FullyConnectedLayerInfo fc_info,
71 const WeightsInfo &weights_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072{
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000073 // Perform validate step
Michele Di Giorgio9c700372020-01-08 11:33:44 +000074 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010075 ARM_COMPUTE_ERROR_THROW_ON(NEFullyConnectedLayer::validate(input->info(), weights->info(),
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000076 biases != nullptr ? biases->info() : nullptr,
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010077 output->info(), fc_info, weights_info));
ramelg01cbbb0382021-09-17 17:36:57 +010078 ARM_COMPUTE_LOG_PARAMS(input, weights, biases, output, fc_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010080 _impl->op = std::make_unique<cpu::CpuFullyConnected>();
81 _impl->original_weights = weights;
82 _impl->is_prepared = false;
Moritz Pflanzer484e7b32017-08-09 11:43:18 +010083
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010084 _impl->op->configure(input->info(), weights->info(), (biases != nullptr) ? biases->info() : nullptr, output->info(),
85 fc_info, weights_info);
Michalis Spyrou1a569a32019-09-10 17:20:34 +010086
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010087 if (_impl->weights_manager != nullptr)
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +010088 {
Giorgio Arena73df9312021-08-16 12:29:27 +010089 _impl->weights_manager->manage(_impl->original_weights);
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +010090 }
91
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +010092 _impl->aux_mem_req = _impl->op->workspace();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010093 _impl->run_pack = {{ACL_SRC_0, input}, {ACL_SRC_1, weights}, {ACL_SRC_2, biases}, {ACL_DST, output}};
94 _impl->workspace =
95 manage_workspace<Tensor>(_impl->aux_mem_req, _impl->memory_group, _impl->run_pack, _impl->run_pack);
Viet-Hoa Doa3e57c22023-03-13 16:20:04 +000096
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010097 _impl->dynamic_weights = !weights->info()->are_values_constant() && fc_info.transpose_weights &&
98 !fc_info.are_weights_reshaped && !fc_info.retain_internal_weights;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099}
100
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100101Status NEFullyConnectedLayer::has_opt_impl(arm_compute::WeightFormat &expected_weight_format,
102 const ITensorInfo *input,
103 const ITensorInfo *weights,
104 const ITensorInfo *biases,
105 const ITensorInfo *output,
106 const FullyConnectedLayerInfo &fc_info,
107 const WeightsInfo &weights_info)
Milos Puzovic13b623e2022-07-27 17:53:21 +0000108{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100109 return cpu::CpuFullyConnected::has_opt_impl(expected_weight_format, input, weights, biases, output, fc_info,
110 weights_info);
Milos Puzovic13b623e2022-07-27 17:53:21 +0000111}
112
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100113Status NEFullyConnectedLayer::validate(const ITensorInfo *input,
114 const ITensorInfo *weights,
115 const ITensorInfo *biases,
116 const ITensorInfo *output,
117 FullyConnectedLayerInfo fc_info,
118 const WeightsInfo &weights_info)
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000119{
Jonathan Deakin464ed202023-01-12 11:41:14 +0000120 return cpu::CpuFullyConnected::validate(input, weights, biases, output, fc_info, weights_info);
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000121}
122
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100123void NEFullyConnectedLayer::run()
124{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100125 if (!_impl->dynamic_weights)
Viet-Hoa Doa3e57c22023-03-13 16:20:04 +0000126 {
127 prepare();
128 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100130 MemoryGroupResourceScope scope_mg(_impl->memory_group);
131 _impl->op->run(_impl->run_pack);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100132}
Georgios Pinitas72219332018-06-05 14:56:06 +0100133
134void NEFullyConnectedLayer::prepare()
135{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100136 if (!_impl->is_prepared)
Georgios Pinitas72219332018-06-05 14:56:06 +0100137 {
Georgios Pinitasfa1db172021-08-12 06:28:09 +0100138 _impl->op->prepare(_impl->run_pack);
Georgios Pinitasef776a82018-07-25 17:57:49 +0100139
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100140 // Release temporary tensors that are only used in prepare stage
141 release_temporaries<Tensor>(_impl->aux_mem_req, _impl->workspace);
142 _impl->is_prepared = true;
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100143
144 // Handle weights managed infrastructure
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100145 if (_impl->weights_manager != nullptr && _impl->weights_manager->are_weights_managed(_impl->original_weights))
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100146 {
Giorgio Arena73df9312021-08-16 12:29:27 +0100147 // Ensure that b gets marked as unused (memory released) only after the last function which uses b also finishes its prepare
148 // This is for cases where multiple functions share the same b (weights)
149 // 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 +0100150 const ITensor *original_b = _impl->original_weights;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100151 if (!original_b->is_used())
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100152 {
Giorgio Arena73df9312021-08-16 12:29:27 +0100153 _impl->weights_manager->pre_mark_as_unused(original_b);
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100154 }
155 _impl->original_weights->mark_as_used();
156 _impl->weights_manager->release(_impl->original_weights);
157 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100158 }
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +0000159}
Georgios Pinitasc6aef872020-04-29 13:37:09 +0100160} // namespace arm_compute