blob: 179bcdaf3e3bbcea7367b0663f6730e0208be2b2 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2016-2020 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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/NEPixelWiseMultiplication.h"
25
Michalis Spyrou861f0db2018-02-26 16:47:58 +000026#include "arm_compute/core/ITensor.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010027#include "src/core/NEON/kernels/NEPixelWiseMultiplicationKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028
29#include <utility>
30
giuros01154bc1c2019-03-26 17:44:40 +000031namespace arm_compute
32{
Michalis Spyrou6eb73452020-07-02 17:39:25 +010033namespace experimental
34{
35void NEPixelWiseMultiplication::configure(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, float scale, ConvertPolicy overflow_policy, RoundingPolicy rounding_policy,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000036 const ActivationLayerInfo &act_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037{
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000038 ARM_COMPUTE_UNUSED(act_info);
Georgios Pinitas40f51a62020-11-21 03:04:18 +000039 auto k = std::make_unique<NEPixelWiseMultiplicationKernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040 k->configure(input1, input2, output, scale, overflow_policy, rounding_policy);
41 _kernel = std::move(k);
42}
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000043Status NEPixelWiseMultiplication::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale, ConvertPolicy overflow_policy, RoundingPolicy rounding_policy,
44 const ActivationLayerInfo &act_info)
Ioan-Cristian Szabo754e9522017-11-28 18:29:43 +000045{
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000046 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled());
Ioan-Cristian Szabo754e9522017-11-28 18:29:43 +000047 return NEPixelWiseMultiplicationKernel::validate(input1, input2, output, scale, overflow_policy, rounding_policy);
48}
giuros01154bc1c2019-03-26 17:44:40 +000049
Michalis Spyrou6eb73452020-07-02 17:39:25 +010050void NEComplexPixelWiseMultiplication::configure(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, const ActivationLayerInfo &act_info)
giuros01154bc1c2019-03-26 17:44:40 +000051{
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000052 ARM_COMPUTE_UNUSED(act_info);
Georgios Pinitas40f51a62020-11-21 03:04:18 +000053 auto k = std::make_unique<NEComplexPixelWiseMultiplicationKernel>();
giuros01154bc1c2019-03-26 17:44:40 +000054 k->configure(input1, input2, output);
55 _kernel = std::move(k);
giuros01154bc1c2019-03-26 17:44:40 +000056}
57
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000058Status NEComplexPixelWiseMultiplication::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const ActivationLayerInfo &act_info)
giuros01154bc1c2019-03-26 17:44:40 +000059{
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000060 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled());
giuros01154bc1c2019-03-26 17:44:40 +000061 return NEComplexPixelWiseMultiplicationKernel::validate(input1, input2, output);
62}
Michalis Spyrou6eb73452020-07-02 17:39:25 +010063} // namespace experimental
64
65struct NEPixelWiseMultiplication::Impl
66{
67 const ITensor *src_0{ nullptr };
68 const ITensor *src_1{ nullptr };
69 ITensor *dst{ nullptr };
70 std::unique_ptr<experimental::NEPixelWiseMultiplication> op{ nullptr };
71};
72
73NEPixelWiseMultiplication::NEPixelWiseMultiplication()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000074 : _impl(std::make_unique<Impl>())
Michalis Spyrou6eb73452020-07-02 17:39:25 +010075{
76}
77NEPixelWiseMultiplication::NEPixelWiseMultiplication(NEPixelWiseMultiplication &&) = default;
78NEPixelWiseMultiplication &NEPixelWiseMultiplication::operator=(NEPixelWiseMultiplication &&) = default;
79NEPixelWiseMultiplication::~NEPixelWiseMultiplication() = default;
80
81Status NEPixelWiseMultiplication::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale, ConvertPolicy overflow_policy, RoundingPolicy rounding_policy,
82 const ActivationLayerInfo &act_info)
83{
84 return experimental::NEPixelWiseMultiplication::validate(input1, input2, output, scale, overflow_policy, rounding_policy, act_info);
85}
86
87void NEPixelWiseMultiplication::configure(const ITensor *input1, const ITensor *input2, ITensor *output, float scale, ConvertPolicy overflow_policy, RoundingPolicy rounding_policy,
88 const ActivationLayerInfo &act_info)
89{
90 _impl->src_0 = input1;
91 _impl->src_1 = input2;
92 _impl->dst = output;
Georgios Pinitas40f51a62020-11-21 03:04:18 +000093 _impl->op = std::make_unique<experimental::NEPixelWiseMultiplication>();
Michalis Spyrou6eb73452020-07-02 17:39:25 +010094 _impl->op->configure(input1->info(), input2->info(), output->info(), scale, overflow_policy, rounding_policy, act_info);
95}
96
97void NEPixelWiseMultiplication::run()
98{
Georgios Pinitas0499dff2020-07-31 22:21:38 +010099 ITensorPack pack;
100 pack.add_tensor(TensorType::ACL_SRC_0, _impl->src_0);
101 pack.add_tensor(TensorType::ACL_SRC_1, _impl->src_1);
102 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
103 _impl->op->run(pack);
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100104}
105
106struct NEComplexPixelWiseMultiplication::Impl
107{
108 ITensor *src_0{ nullptr };
109 ITensor *src_1{ nullptr };
110 ITensor *dst{ nullptr };
111 std::unique_ptr<experimental::NEComplexPixelWiseMultiplication> op{ nullptr };
112};
113
114NEComplexPixelWiseMultiplication::NEComplexPixelWiseMultiplication()
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000115 : _impl(std::make_unique<Impl>())
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100116{
117}
118NEComplexPixelWiseMultiplication::NEComplexPixelWiseMultiplication(NEComplexPixelWiseMultiplication &&) = default;
119NEComplexPixelWiseMultiplication &NEComplexPixelWiseMultiplication::operator=(NEComplexPixelWiseMultiplication &&) = default;
120NEComplexPixelWiseMultiplication::~NEComplexPixelWiseMultiplication() = default;
121
122Status NEComplexPixelWiseMultiplication::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const ActivationLayerInfo &act_info)
123{
124 return experimental::NEComplexPixelWiseMultiplication::validate(input1, input2, output, act_info);
125}
126
127void NEComplexPixelWiseMultiplication::configure(ITensor *input1, ITensor *input2, ITensor *output, const ActivationLayerInfo &act_info)
128{
129 _impl->src_0 = input1;
130 _impl->src_1 = input2;
131 _impl->dst = output;
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000132 _impl->op = std::make_unique<experimental::NEComplexPixelWiseMultiplication>();
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100133 _impl->op->configure(input1->info(), input2->info(), output->info(), act_info);
134}
135
136void NEComplexPixelWiseMultiplication::run()
137{
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100138 ITensorPack pack;
139 pack.add_tensor(TensorType::ACL_SRC_0, _impl->src_0);
140 pack.add_tensor(TensorType::ACL_SRC_1, _impl->src_1);
141 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
142 _impl->op->run(pack);
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100143}
giuros01154bc1c2019-03-26 17:44:40 +0000144} // namespace arm_compute