blob: 92dcf15791db360e7103ba0a9ce4de0a31243baf [file] [log] [blame]
Georgios Pinitas58bce682020-11-13 11:38:58 +00001/*
Sang-Hoon Park0094c022021-01-20 18:16:47 +00002 * Copyright (c) 2020-2021 Arm Limited.
Georgios Pinitas58bce682020-11-13 11:38:58 +00003 *
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/NELogical.h"
25
26#include "arm_compute/runtime/NEON/NEScheduler.h"
27#include "arm_compute/runtime/Tensor.h"
ramelg01cbbb0382021-09-17 17:36:57 +010028#include "src/common/utils/Log.h"
Georgios Pinitas58bce682020-11-13 11:38:58 +000029#include "src/core/NEON/kernels/NELogicalKernel.h"
Georgios Pinitas58bce682020-11-13 11:38:58 +000030
31namespace arm_compute
32{
33struct LogicalArgs
34{
35 std::unique_ptr<kernels::NELogicalKernel> kernel{ nullptr };
36 ITensorPack pack{};
37};
38
39struct NELogicalAnd::Impl : public LogicalArgs
40{
41};
42NELogicalAnd::NELogicalAnd()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000043 : _impl(std::make_unique<Impl>())
Georgios Pinitas58bce682020-11-13 11:38:58 +000044{
45}
Michele Di Giorgio13c497a2021-05-13 12:54:31 +010046NELogicalAnd::~NELogicalAnd() = default;
Georgios Pinitas58bce682020-11-13 11:38:58 +000047
48void NELogicalAnd::configure(const ITensor *input1, const ITensor *input2, ITensor *output)
49{
50 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
ramelg01cbbb0382021-09-17 17:36:57 +010051 ARM_COMPUTE_LOG_PARAMS(input1, input2, output);
Georgios Pinitas58bce682020-11-13 11:38:58 +000052
Georgios Pinitas40f51a62020-11-21 03:04:18 +000053 _impl->kernel = std::make_unique<kernels::NELogicalKernel>();
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +000054 _impl->kernel->configure(input1->info(), input2->info(), output->info(), LogicalOperation::And);
Georgios Pinitas58bce682020-11-13 11:38:58 +000055
56 _impl->pack = ITensorPack();
57 _impl->pack.add_tensor(TensorType::ACL_SRC_0, input1);
58 _impl->pack.add_tensor(TensorType::ACL_SRC_1, input2);
59 _impl->pack.add_tensor(TensorType::ACL_DST, output);
60}
61
62Status NELogicalAnd::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
63{
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +000064 return kernels::NELogicalKernel::validate(input1, input2, output, LogicalOperation::And);
Georgios Pinitas58bce682020-11-13 11:38:58 +000065}
66
67void NELogicalAnd::run()
68{
Sang-Hoon Park0094c022021-01-20 18:16:47 +000069 NEScheduler::get().schedule_op(_impl->kernel.get(), Window::DimY, _impl->kernel->window(), _impl->pack);
Georgios Pinitas58bce682020-11-13 11:38:58 +000070}
71
72struct NELogicalOr::Impl : public LogicalArgs
73{
74};
75NELogicalOr::NELogicalOr()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000076 : _impl(std::make_unique<Impl>())
Georgios Pinitas58bce682020-11-13 11:38:58 +000077{
78}
Michele Di Giorgio13c497a2021-05-13 12:54:31 +010079NELogicalOr::~NELogicalOr() = default;
Georgios Pinitas58bce682020-11-13 11:38:58 +000080
81void NELogicalOr::configure(const ITensor *input1, const ITensor *input2, ITensor *output)
82{
83 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
ramelg01cbbb0382021-09-17 17:36:57 +010084 ARM_COMPUTE_LOG_PARAMS(input1, input2, output);
Georgios Pinitas58bce682020-11-13 11:38:58 +000085
Georgios Pinitas40f51a62020-11-21 03:04:18 +000086 _impl->kernel = std::make_unique<kernels::NELogicalKernel>();
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +000087 _impl->kernel->configure(input1->info(), input2->info(), output->info(), LogicalOperation::Or);
Georgios Pinitas58bce682020-11-13 11:38:58 +000088
89 _impl->pack = ITensorPack();
90 _impl->pack.add_tensor(TensorType::ACL_SRC_0, input1);
91 _impl->pack.add_tensor(TensorType::ACL_SRC_1, input2);
92 _impl->pack.add_tensor(TensorType::ACL_DST, output);
93}
94
95Status NELogicalOr::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
96{
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +000097 return kernels::NELogicalKernel::validate(input1, input2, output, LogicalOperation::Or);
Georgios Pinitas58bce682020-11-13 11:38:58 +000098}
99
100void NELogicalOr::run()
101{
Sang-Hoon Park0094c022021-01-20 18:16:47 +0000102 NEScheduler::get().schedule_op(_impl->kernel.get(), Window::DimY, _impl->kernel->window(), _impl->pack);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000103}
104
105struct NELogicalNot::Impl : public LogicalArgs
106{
107};
108NELogicalNot::NELogicalNot()
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000109 : _impl(std::make_unique<Impl>())
Georgios Pinitas58bce682020-11-13 11:38:58 +0000110{
111}
Michele Di Giorgio13c497a2021-05-13 12:54:31 +0100112NELogicalNot::~NELogicalNot() = default;
Georgios Pinitas58bce682020-11-13 11:38:58 +0000113
114void NELogicalNot::configure(const ITensor *input, ITensor *output)
115{
116 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
ramelg01cbbb0382021-09-17 17:36:57 +0100117 ARM_COMPUTE_LOG_PARAMS(input, output);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000118
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000119 _impl->kernel = std::make_unique<kernels::NELogicalKernel>();
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000120 _impl->kernel->configure(input->info(), nullptr, output->info(), LogicalOperation::Not);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000121
122 _impl->pack = ITensorPack();
123 _impl->pack.add_tensor(TensorType::ACL_SRC_0, input);
124 _impl->pack.add_tensor(TensorType::ACL_DST, output);
125}
126
127Status NELogicalNot::validate(const ITensorInfo *input, const ITensorInfo *output)
128{
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000129 return kernels::NELogicalKernel::validate(input, nullptr, output, LogicalOperation::Not);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000130}
131
132void NELogicalNot::run()
133{
Sang-Hoon Park0094c022021-01-20 18:16:47 +0000134 NEScheduler::get().schedule_op(_impl->kernel.get(), Window::DimY, _impl->kernel->window(), _impl->pack);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000135}
136} // namespace arm_compute