blob: 06a68d64a8906bba06208d605ba0315ba1adc6a0 [file] [log] [blame]
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +01001/*
2 * Copyright (c) 2016-2021 Arm Limited.
3 *
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"
Georgios Pinitas7891a732021-08-20 21:39:25 +010029#include "src/cpu/kernels/CpuMulKernel.h"
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +010030
31namespace arm_compute
32{
33namespace cpu
34{
35Status CpuMul::validate(const ITensorInfo *src1, const ITensorInfo *src2, const ITensorInfo *dst, float scale, ConvertPolicy overflow_policy, RoundingPolicy rounding_policy,
36 const ActivationLayerInfo &act_info)
37{
38 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled());
39 return kernels::CpuMulKernel::validate(src1, src2, dst, scale, overflow_policy, rounding_policy);
40}
41
42void CpuMul::configure(ITensorInfo *src1, ITensorInfo *src2, ITensorInfo *dst, float scale, ConvertPolicy overflow_policy, RoundingPolicy rounding_policy,
43 const ActivationLayerInfo &act_info)
44{
45 ARM_COMPUTE_UNUSED(act_info);
46 auto k = std::make_unique<kernels::CpuMulKernel>();
47 k->configure(src1, src2, dst, scale, overflow_policy, rounding_policy);
48 _kernel = std::move(k);
49}
50
51void CpuMul::run(ITensorPack &tensors)
52{
53 ARM_COMPUTE_ERROR_ON_MSG(tensors.empty(), "No inputs provided");
54 NEScheduler::get().schedule_op(_kernel.get(), Window::DimY, _kernel->window(), tensors);
55}
56
57Status CpuComplexMul::validate(const ITensorInfo *src1, const ITensorInfo *src2, const ITensorInfo *dst, const ActivationLayerInfo &act_info)
58{
59 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled());
60 return kernels::CpuComplexMulKernel::validate(src1, src2, dst);
61}
62
63void CpuComplexMul::configure(ITensorInfo *src1, ITensorInfo *src2, ITensorInfo *dst, const ActivationLayerInfo &act_info)
64{
65 ARM_COMPUTE_UNUSED(act_info);
66 auto k = std::make_unique<kernels::CpuComplexMulKernel>();
67 k->configure(src1, src2, dst);
68 _kernel = std::move(k);
69}
70
71void CpuComplexMul::run(ITensorPack &tensors)
72{
73 ARM_COMPUTE_ERROR_ON_MSG(tensors.empty(), "No inputs provided");
74 NEScheduler::get().schedule_op(_kernel.get(), Window::DimY, _kernel->window(), tensors);
75}
76} // namespace cpu
77} // namespace arm_compute