blob: a39e639ad47ae2f8d0a1c287da08bdb52a9344bf [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"
Georgios Pinitas7891a732021-08-20 21:39:25 +010027#include "src/cpu/operators/CpuCast.h"
Usama Arif9e631c22019-05-14 17:10:40 +010028
29namespace arm_compute
30{
Georgios Pinitas11d84152021-04-28 10:20:18 +010031struct NECast::Impl
32{
33 const ITensor *src{ nullptr };
34 ITensor *dst{ nullptr };
35 std::unique_ptr<cpu::CpuCast> op{ nullptr };
36};
37
38NECast::NECast()
39 : _impl(std::make_unique<Impl>())
40{
41}
42NECast::NECast(NECast &&) = default;
43NECast &NECast::operator=(NECast &&) = default;
44NECast::~NECast() = default;
45
Usama Arif9e631c22019-05-14 17:10:40 +010046void NECast::configure(ITensor *input, ITensor *output, ConvertPolicy policy)
47{
Georgios Pinitas11d84152021-04-28 10:20:18 +010048 _impl->src = input;
49 _impl->dst = output;
50
51 ARM_COMPUTE_ERROR_ON_NULLPTR(_impl->src, _impl->dst);
52
53 _impl->op = std::make_unique<cpu::CpuCast>();
54 _impl->op->configure(_impl->src->info(), _impl->dst->info(), policy);
Usama Arif9e631c22019-05-14 17:10:40 +010055}
56
57Status NECast::validate(ITensorInfo *input, ITensorInfo *output, ConvertPolicy policy)
58{
Georgios Pinitas11d84152021-04-28 10:20:18 +010059 return cpu::CpuCast::validate(input, output, policy);
60}
61
62void NECast::run()
63{
64 ITensorPack pack = { { ACL_SRC, _impl->src }, { ACL_DST, _impl->dst } };
65 _impl->op->run(pack);
Usama Arif9e631c22019-05-14 17:10:40 +010066}
67} // namespace arm_compute