blob: a58d4e5f69099687d8f084de441c08ef1aa444c9 [file] [log] [blame]
Usama Arif9e631c22019-05-14 17:10:40 +01001/*
Georgios Pinitas11d84152021-04-28 10:20:18 +01002 * Copyright (c) 2019-2021 Arm Limited.
Usama Arif9e631c22019-05-14 17:10:40 +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/NECast.h"
25
Georgios Pinitas11d84152021-04-28 10:20:18 +010026#include "arm_compute/core/Validate.h"
ramelg01cbbb0382021-09-17 17:36:57 +010027#include "src/common/utils/Log.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010028#include "src/cpu/operators/CpuCast.h"
Usama Arif9e631c22019-05-14 17:10:40 +010029
30namespace arm_compute
31{
Georgios Pinitas11d84152021-04-28 10:20:18 +010032struct NECast::Impl
33{
34 const ITensor *src{ nullptr };
35 ITensor *dst{ nullptr };
36 std::unique_ptr<cpu::CpuCast> op{ nullptr };
37};
38
39NECast::NECast()
40 : _impl(std::make_unique<Impl>())
41{
42}
43NECast::NECast(NECast &&) = default;
44NECast &NECast::operator=(NECast &&) = default;
45NECast::~NECast() = default;
46
Usama Arif9e631c22019-05-14 17:10:40 +010047void NECast::configure(ITensor *input, ITensor *output, ConvertPolicy policy)
48{
Georgios Pinitas11d84152021-04-28 10:20:18 +010049 _impl->src = input;
50 _impl->dst = output;
51
52 ARM_COMPUTE_ERROR_ON_NULLPTR(_impl->src, _impl->dst);
ramelg01cbbb0382021-09-17 17:36:57 +010053 ARM_COMPUTE_LOG_PARAMS(input, output, policy);
Georgios Pinitas11d84152021-04-28 10:20:18 +010054 _impl->op = std::make_unique<cpu::CpuCast>();
55 _impl->op->configure(_impl->src->info(), _impl->dst->info(), policy);
Usama Arif9e631c22019-05-14 17:10:40 +010056}
57
58Status NECast::validate(ITensorInfo *input, ITensorInfo *output, ConvertPolicy policy)
59{
Georgios Pinitas11d84152021-04-28 10:20:18 +010060 return cpu::CpuCast::validate(input, output, policy);
61}
62
63void NECast::run()
64{
65 ITensorPack pack = { { ACL_SRC, _impl->src }, { ACL_DST, _impl->dst } };
66 _impl->op->run(pack);
Usama Arif9e631c22019-05-14 17:10:40 +010067}
68} // namespace arm_compute