blob: 0013a521d13103952ff84fd1ab71d2392f239a22 [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"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028
ramelg01cbbb0382021-09-17 17:36:57 +010029#include "src/common/utils/Log.h"
Georgios Pinitas58bce682020-11-13 11:38:58 +000030#include "src/core/NEON/kernels/NELogicalKernel.h"
Georgios Pinitas58bce682020-11-13 11:38:58 +000031
32namespace arm_compute
33{
34struct LogicalArgs
35{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010036 std::unique_ptr<kernels::NELogicalKernel> kernel{nullptr};
Georgios Pinitas58bce682020-11-13 11:38:58 +000037 ITensorPack pack{};
38};
39
40struct NELogicalAnd::Impl : public LogicalArgs
41{
42};
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010043NELogicalAnd::NELogicalAnd() : _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};
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010075NELogicalOr::NELogicalOr() : _impl(std::make_unique<Impl>())
Georgios Pinitas58bce682020-11-13 11:38:58 +000076{
77}
Michele Di Giorgio13c497a2021-05-13 12:54:31 +010078NELogicalOr::~NELogicalOr() = default;
Georgios Pinitas58bce682020-11-13 11:38:58 +000079
80void NELogicalOr::configure(const ITensor *input1, const ITensor *input2, ITensor *output)
81{
82 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
ramelg01cbbb0382021-09-17 17:36:57 +010083 ARM_COMPUTE_LOG_PARAMS(input1, input2, output);
Georgios Pinitas58bce682020-11-13 11:38:58 +000084
Georgios Pinitas40f51a62020-11-21 03:04:18 +000085 _impl->kernel = std::make_unique<kernels::NELogicalKernel>();
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +000086 _impl->kernel->configure(input1->info(), input2->info(), output->info(), LogicalOperation::Or);
Georgios Pinitas58bce682020-11-13 11:38:58 +000087
88 _impl->pack = ITensorPack();
89 _impl->pack.add_tensor(TensorType::ACL_SRC_0, input1);
90 _impl->pack.add_tensor(TensorType::ACL_SRC_1, input2);
91 _impl->pack.add_tensor(TensorType::ACL_DST, output);
92}
93
94Status NELogicalOr::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
95{
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +000096 return kernels::NELogicalKernel::validate(input1, input2, output, LogicalOperation::Or);
Georgios Pinitas58bce682020-11-13 11:38:58 +000097}
98
99void NELogicalOr::run()
100{
Sang-Hoon Park0094c022021-01-20 18:16:47 +0000101 NEScheduler::get().schedule_op(_impl->kernel.get(), Window::DimY, _impl->kernel->window(), _impl->pack);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000102}
103
104struct NELogicalNot::Impl : public LogicalArgs
105{
106};
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100107NELogicalNot::NELogicalNot() : _impl(std::make_unique<Impl>())
Georgios Pinitas58bce682020-11-13 11:38:58 +0000108{
109}
Michele Di Giorgio13c497a2021-05-13 12:54:31 +0100110NELogicalNot::~NELogicalNot() = default;
Georgios Pinitas58bce682020-11-13 11:38:58 +0000111
112void NELogicalNot::configure(const ITensor *input, ITensor *output)
113{
114 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
ramelg01cbbb0382021-09-17 17:36:57 +0100115 ARM_COMPUTE_LOG_PARAMS(input, output);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000116
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000117 _impl->kernel = std::make_unique<kernels::NELogicalKernel>();
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000118 _impl->kernel->configure(input->info(), nullptr, output->info(), LogicalOperation::Not);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000119
120 _impl->pack = ITensorPack();
121 _impl->pack.add_tensor(TensorType::ACL_SRC_0, input);
122 _impl->pack.add_tensor(TensorType::ACL_DST, output);
123}
124
125Status NELogicalNot::validate(const ITensorInfo *input, const ITensorInfo *output)
126{
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000127 return kernels::NELogicalKernel::validate(input, nullptr, output, LogicalOperation::Not);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000128}
129
130void NELogicalNot::run()
131{
Sang-Hoon Park0094c022021-01-20 18:16:47 +0000132 NEScheduler::get().schedule_op(_impl->kernel.get(), Window::DimY, _impl->kernel->window(), _impl->pack);
Georgios Pinitas58bce682020-11-13 11:38:58 +0000133}
134} // namespace arm_compute