blob: f2253d8be490a248f45ad94b21509398aac59002 [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
26#include "src/runtime/cpu/operators/CpuConvertFullyConnectedWeights.h"
Giorgio Arena657bdb32018-04-26 18:52:01 +010027
Michalis Spyrou1a569a32019-09-10 17:20:34 +010028namespace arm_compute
29{
Teresa Charlin562bee52021-04-13 17:44:15 +010030struct NEConvertFullyConnectedWeights::Impl
31{
32 const ITensor *src{ nullptr };
33 ITensor *dst{ nullptr };
34 std::unique_ptr<cpu::CpuConvertFullyConnectedWeights> op{ nullptr };
35};
Giorgio Arena657bdb32018-04-26 18:52:01 +010036NEConvertFullyConnectedWeights::NEConvertFullyConnectedWeights()
Teresa Charlin562bee52021-04-13 17:44:15 +010037 : _impl(std::make_unique<Impl>())
Giorgio Arena657bdb32018-04-26 18:52:01 +010038{
39}
Teresa Charlin562bee52021-04-13 17:44:15 +010040NEConvertFullyConnectedWeights::~NEConvertFullyConnectedWeights() = default;
Giorgio Arena657bdb32018-04-26 18:52:01 +010041
42void NEConvertFullyConnectedWeights::configure(const ITensor *input, ITensor *output, const TensorShape &original_input_shape,
43 DataLayout data_layout)
44{
Teresa Charlin562bee52021-04-13 17:44:15 +010045 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
46
47 _impl->src = input;
48 _impl->dst = output;
49 _impl->op = std::make_unique<cpu::CpuConvertFullyConnectedWeights>();
50 _impl->op->configure(_impl->src->info(), _impl->dst->info(), original_input_shape, data_layout);
Giorgio Arena657bdb32018-04-26 18:52:01 +010051}
52
53Status NEConvertFullyConnectedWeights::validate(const ITensorInfo *input, const ITensorInfo *output, const TensorShape &original_input_shape,
54 DataLayout data_layout)
55{
Teresa Charlin562bee52021-04-13 17:44:15 +010056 return cpu::CpuConvertFullyConnectedWeights::validate(input, output, original_input_shape, data_layout);
Giorgio Arena657bdb32018-04-26 18:52:01 +010057}
58
59void NEConvertFullyConnectedWeights::run()
60{
Teresa Charlin562bee52021-04-13 17:44:15 +010061 ITensorPack pack;
62 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
63 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
64 _impl->op->run(pack);
Giorgio Arena657bdb32018-04-26 18:52:01 +010065}
Michalis Spyrou1a569a32019-09-10 17:20:34 +010066} // namespace arm_compute