blob: ac9847111dfc76899245709d932f52dcd08b25c4 [file] [log] [blame]
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +01001/*
Viet-Hoa Do0d05b662022-09-09 15:39:05 +01002 * Copyright (c) 2016-2022 Arm Limited.
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/operators/CpuMul.h"
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010025
26#include "arm_compute/core/TensorInfo.h"
27#include "arm_compute/core/Validate.h"
28#include "arm_compute/runtime/NEON/NEScheduler.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010029
ramelg013ae3d882021-09-12 23:07:47 +010030#include "src/common/utils/Log.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010031#include "src/cpu/kernels/CpuMulKernel.h"
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010032
33namespace arm_compute
34{
35namespace cpu
36{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010037Status CpuMul::validate(const ITensorInfo *src1,
38 const ITensorInfo *src2,
39 const ITensorInfo *dst,
40 float scale,
41 ConvertPolicy overflow_policy,
42 RoundingPolicy rounding_policy,
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010043 const ActivationLayerInfo &act_info)
44{
45 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled());
46 return kernels::CpuMulKernel::validate(src1, src2, dst, scale, overflow_policy, rounding_policy);
47}
48
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010049void CpuMul::configure(ITensorInfo *src1,
50 ITensorInfo *src2,
51 ITensorInfo *dst,
52 float scale,
53 ConvertPolicy overflow_policy,
54 RoundingPolicy rounding_policy,
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010055 const ActivationLayerInfo &act_info)
56{
57 ARM_COMPUTE_UNUSED(act_info);
ramelg013ae3d882021-09-12 23:07:47 +010058 ARM_COMPUTE_LOG_PARAMS(src1, src2, dst, scale, overflow_policy, rounding_policy, act_info);
59
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010060 auto k = std::make_unique<kernels::CpuMulKernel>();
61 k->configure(src1, src2, dst, scale, overflow_policy, rounding_policy);
62 _kernel = std::move(k);
63}
64
65void CpuMul::run(ITensorPack &tensors)
66{
67 ARM_COMPUTE_ERROR_ON_MSG(tensors.empty(), "No inputs provided");
Viet-Hoa Do0d05b662022-09-09 15:39:05 +010068 auto split_dimension = static_cast<kernels::CpuMulKernel *>(_kernel.get())->get_split_dimension_hint();
69 NEScheduler::get().schedule_op(_kernel.get(), split_dimension, _kernel->window(), tensors);
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010070}
71
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010072Status CpuComplexMul::validate(const ITensorInfo *src1,
73 const ITensorInfo *src2,
74 const ITensorInfo *dst,
75 const ActivationLayerInfo &act_info)
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010076{
77 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled());
78 return kernels::CpuComplexMulKernel::validate(src1, src2, dst);
79}
80
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010081void CpuComplexMul::configure(ITensorInfo *src1,
82 ITensorInfo *src2,
83 ITensorInfo *dst,
84 const ActivationLayerInfo &act_info)
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010085{
86 ARM_COMPUTE_UNUSED(act_info);
ramelg013ae3d882021-09-12 23:07:47 +010087 ARM_COMPUTE_LOG_PARAMS(src1, src2, dst, act_info);
88
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010089 auto k = std::make_unique<kernels::CpuComplexMulKernel>();
90 k->configure(src1, src2, dst);
91 _kernel = std::move(k);
92}
93
94void CpuComplexMul::run(ITensorPack &tensors)
95{
96 ARM_COMPUTE_ERROR_ON_MSG(tensors.empty(), "No inputs provided");
97 NEScheduler::get().schedule_op(_kernel.get(), Window::DimY, _kernel->window(), tensors);
98}
99} // namespace cpu
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100100} // namespace arm_compute