blob: 535ac9900188ec6187f0279a0496b754218be3a8 [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"
Georgios Pinitas7891a732021-08-20 21:39:25 +010027#include "src/cpu/operators/CpuConvertFullyConnectedWeights.h"
Giorgio Arena657bdb32018-04-26 18:52:01 +010028
Michalis Spyrou1a569a32019-09-10 17:20:34 +010029namespace arm_compute
30{
Teresa Charlin562bee52021-04-13 17:44:15 +010031struct NEConvertFullyConnectedWeights::Impl
32{
33 const ITensor *src{ nullptr };
34 ITensor *dst{ nullptr };
35 std::unique_ptr<cpu::CpuConvertFullyConnectedWeights> op{ nullptr };
36};
Giorgio Arena657bdb32018-04-26 18:52:01 +010037NEConvertFullyConnectedWeights::NEConvertFullyConnectedWeights()
Teresa Charlin562bee52021-04-13 17:44:15 +010038 : _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
43void NEConvertFullyConnectedWeights::configure(const ITensor *input, ITensor *output, const TensorShape &original_input_shape,
44 DataLayout data_layout)
45{
Teresa Charlin562bee52021-04-13 17:44:15 +010046 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
47
48 _impl->src = input;
49 _impl->dst = output;
50 _impl->op = std::make_unique<cpu::CpuConvertFullyConnectedWeights>();
51 _impl->op->configure(_impl->src->info(), _impl->dst->info(), original_input_shape, data_layout);
Giorgio Arena657bdb32018-04-26 18:52:01 +010052}
53
54Status NEConvertFullyConnectedWeights::validate(const ITensorInfo *input, const ITensorInfo *output, const TensorShape &original_input_shape,
55 DataLayout data_layout)
56{
Teresa Charlin562bee52021-04-13 17:44:15 +010057 return cpu::CpuConvertFullyConnectedWeights::validate(input, output, original_input_shape, data_layout);
Giorgio Arena657bdb32018-04-26 18:52:01 +010058}
59
60void NEConvertFullyConnectedWeights::run()
61{
Teresa Charlin562bee52021-04-13 17:44:15 +010062 ITensorPack pack;
63 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
64 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
65 _impl->op->run(pack);
Giorgio Arena657bdb32018-04-26 18:52:01 +010066}
Michalis Spyrou1a569a32019-09-10 17:20:34 +010067} // namespace arm_compute