blob: 84e8565aaf4ce3eeb2d80a035b0a76764f16d19a [file] [log] [blame]
Giorgio Arena657bdb32018-04-26 18:52:01 +01001/*
Teresa Charlin562bee52021-04-13 17:44:15 +01002 * Copyright (c) 2018-2021 Arm Limited.
Giorgio Arena657bdb32018-04-26 18:52:01 +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/NEConvertFullyConnectedWeights.h"
Teresa Charlin562bee52021-04-13 17:44:15 +010025
Michele Di Giorgioa86433a2021-07-28 14:10:47 +010026#include "arm_compute/core/Validate.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010027
Georgios Pinitas7891a732021-08-20 21:39:25 +010028#include "src/cpu/operators/CpuConvertFullyConnectedWeights.h"
Giorgio Arena657bdb32018-04-26 18:52:01 +010029
Michalis Spyrou1a569a32019-09-10 17:20:34 +010030namespace arm_compute
31{
Teresa Charlin562bee52021-04-13 17:44:15 +010032struct NEConvertFullyConnectedWeights::Impl
33{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034 const ITensor *src{nullptr};
35 ITensor *dst{nullptr};
36 std::unique_ptr<cpu::CpuConvertFullyConnectedWeights> op{nullptr};
Teresa Charlin562bee52021-04-13 17:44:15 +010037};
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010038NEConvertFullyConnectedWeights::NEConvertFullyConnectedWeights() : _impl(std::make_unique<Impl>())
Giorgio Arena657bdb32018-04-26 18:52:01 +010039{
40}
Teresa Charlin562bee52021-04-13 17:44:15 +010041NEConvertFullyConnectedWeights::~NEConvertFullyConnectedWeights() = default;
Giorgio Arena657bdb32018-04-26 18:52:01 +010042
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010043void NEConvertFullyConnectedWeights::configure(const ITensor *input,
44 ITensor *output,
45 const TensorShape &original_input_shape,
46 DataLayout data_layout)
Giorgio Arena657bdb32018-04-26 18:52:01 +010047{
Teresa Charlin562bee52021-04-13 17:44:15 +010048 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
49
50 _impl->src = input;
51 _impl->dst = output;
52 _impl->op = std::make_unique<cpu::CpuConvertFullyConnectedWeights>();
53 _impl->op->configure(_impl->src->info(), _impl->dst->info(), original_input_shape, data_layout);
Giorgio Arena657bdb32018-04-26 18:52:01 +010054}
55
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010056Status NEConvertFullyConnectedWeights::validate(const ITensorInfo *input,
57 const ITensorInfo *output,
58 const TensorShape &original_input_shape,
59 DataLayout data_layout)
Giorgio Arena657bdb32018-04-26 18:52:01 +010060{
Teresa Charlin562bee52021-04-13 17:44:15 +010061 return cpu::CpuConvertFullyConnectedWeights::validate(input, output, original_input_shape, data_layout);
Giorgio Arena657bdb32018-04-26 18:52:01 +010062}
63
64void NEConvertFullyConnectedWeights::run()
65{
Teresa Charlin562bee52021-04-13 17:44:15 +010066 ITensorPack pack;
67 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
68 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
69 _impl->op->run(pack);
Giorgio Arena657bdb32018-04-26 18:52:01 +010070}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010071} // namespace arm_compute