blob: 696191c485998e2a17c7852212dc68efd1a23a33 [file] [log] [blame]
Sang-Hoon Park75eea332020-11-13 13:44:13 +00001/*
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +00002 * Copyright (c) 2020-2021 Arm Limited.
Sang-Hoon Park75eea332020-11-13 13:44:13 +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/CL/functions/CLLogicalAnd.h"
25#include "arm_compute/core/CL/ICLTensor.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010026#include "src/gpu/cl/kernels/ClElementwiseKernel.h"
Sang-Hoon Park75eea332020-11-13 13:44:13 +000027
ramelg016d891572021-09-29 10:05:09 +010028#include "src/common/utils/Log.h"
29
Sang-Hoon Park75eea332020-11-13 13:44:13 +000030#include <utility>
31
32namespace arm_compute
33{
34namespace experimental
35{
36void CLLogicalAnd::configure(const CLCompileContext &compile_context, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
37{
ramelg016d891572021-09-29 10:05:09 +010038 ARM_COMPUTE_LOG_PARAMS(input1, input2, output);
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +000039 auto k = std::make_unique<arm_compute::opencl::kernels::ClLogicalBinaryKernel>();
40 k->configure(compile_context, LogicalOperation::And, input1, input2, output);
Sang-Hoon Park75eea332020-11-13 13:44:13 +000041 _kernel = std::move(k);
42}
43
44Status CLLogicalAnd::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
45{
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +000046 return arm_compute::opencl::kernels::ClLogicalBinaryKernel::validate(LogicalOperation::And, input1, input2, output);
Sang-Hoon Park75eea332020-11-13 13:44:13 +000047}
48
49void CLLogicalAnd::run(ITensorPack &tensors)
50{
51 ICLOperator::run(tensors);
52}
53} // namespace experimental
54
55struct CLLogicalAnd::Impl
56{
57 const ICLTensor *src0{ nullptr };
58 const ICLTensor *src1{ nullptr };
59 ICLTensor *dst{ nullptr };
60 std::unique_ptr<experimental::CLLogicalAnd> op{ nullptr };
61};
62
63CLLogicalAnd::CLLogicalAnd()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000064 : _impl(std::make_unique<Impl>())
Sang-Hoon Park75eea332020-11-13 13:44:13 +000065{
66}
67CLLogicalAnd::CLLogicalAnd(CLLogicalAnd &&) = default;
68CLLogicalAnd &CLLogicalAnd::operator=(CLLogicalAnd &&) = default;
69CLLogicalAnd::~CLLogicalAnd() = default;
70
71void CLLogicalAnd::configure(ICLTensor *input1, ICLTensor *input2, ICLTensor *output)
72{
73 configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output);
74}
75
76void CLLogicalAnd::configure(const CLCompileContext &compile_context, ICLTensor *input1, ICLTensor *input2, ICLTensor *output)
77{
78 _impl->src0 = input1;
79 _impl->src1 = input2;
80 _impl->dst = output;
Georgios Pinitas40f51a62020-11-21 03:04:18 +000081 _impl->op = std::make_unique<experimental::CLLogicalAnd>();
Sang-Hoon Park75eea332020-11-13 13:44:13 +000082 _impl->op->configure(compile_context, input1->info(), input2->info(), output->info());
83}
84
85Status CLLogicalAnd::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
86{
87 return experimental::CLLogicalAnd::validate(input1, input2, output);
88}
89
90void CLLogicalAnd::run()
91{
92 ITensorPack pack;
93 pack.add_tensor(TensorType::ACL_SRC_0, _impl->src0);
94 pack.add_tensor(TensorType::ACL_SRC_1, _impl->src1);
95 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
96
97 _impl->op->run(pack);
98}
99} // namespace arm_compute