blob: 65e390a81a8ca7df91b231035523b4dd14a06094 [file] [log] [blame]
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00001/*
Giorgio Arena5ae8d802021-11-18 18:02:13 +00002 * Copyright (c) 2017-2022 Arm Limited.
Georgios Pinitas70eb53b2021-01-06 19:42:21 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/kernels/CpuFloorKernel.h"
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000025
26#include "arm_compute/core/Coordinates.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/Validate.h"
30#include "src/core/CPP/Validate.h"
31#include "src/core/helpers/AutoConfiguration.h"
32#include "src/core/helpers/WindowHelpers.h"
33
34#include "src/core/common/Registrars.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010035#include "src/cpu/kernels/floor/list.h"
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000036
37namespace arm_compute
38{
39namespace cpu
40{
41namespace kernels
42{
43namespace
44{
Giorgio Arena5ae8d802021-11-18 18:02:13 +000045static const std::vector<CpuFloorKernel::FloorKernel> available_kernels =
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000046{
47 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010048 "neon_fp16_floor",
Giorgio Arena5ae8d802021-11-18 18:02:13 +000049 [](const DataTypeISASelectorData & data) { return data.dt == DataType::F16 && data.isa.fp16; },
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000050 REGISTER_FP16_NEON(arm_compute::cpu::fp16_neon_floor)
51 },
52 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010053 "neon_fp32_floor",
Giorgio Arena5ae8d802021-11-18 18:02:13 +000054 [](const DataTypeISASelectorData & data) { return data.dt == DataType::F32; },
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000055 REGISTER_FP32_NEON(arm_compute::cpu::fp32_neon_floor)
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000056 }
Giorgio Arena5ae8d802021-11-18 18:02:13 +000057};
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000058
59Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst)
60{
61 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
62
Giorgio Arena5ae8d802021-11-18 18:02:13 +000063 const auto *uk = CpuFloorKernel::get_implementation(DataTypeISASelectorData{ src->data_type(), CPUInfo::get().get_isa() });
Georgios Pinitas5fdde992021-06-25 05:42:57 +010064 ARM_COMPUTE_RETURN_ERROR_ON(uk == nullptr || uk->ukernel == nullptr);
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000065
66 // Validate in case of configured output
67 if(dst->total_size() > 0)
68 {
69 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
70 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(src, dst);
71 }
72
73 return Status{};
74}
75} // namespace
76
77void CpuFloorKernel::configure(const ITensorInfo *src, ITensorInfo *dst)
78{
79 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
Georgios Pinitas5fdde992021-06-25 05:42:57 +010080 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst));
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000081
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000082 auto_init_if_empty(*dst, src->tensor_shape(), 1, src->data_type());
83
Giorgio Arena5ae8d802021-11-18 18:02:13 +000084 const auto *uk = CpuFloorKernel::get_implementation(DataTypeISASelectorData{ src->data_type(), CPUInfo::get().get_isa() });
Georgios Pinitas5fdde992021-06-25 05:42:57 +010085 ARM_COMPUTE_ERROR_ON_NULLPTR(uk);
86
87 _run_method = uk->ukernel;
88 _name = std::string("CpuFloorKernel").append("/").append(uk->name);
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000089
90 // Configure kernel window
91 const Window win = calculate_max_window(*src, Steps());
92
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000093 ICPPKernel::configure(win);
94}
95
96Window CpuFloorKernel::infer_window(const ITensorInfo *src, const ITensorInfo *dst)
97{
98 ARM_COMPUTE_UNUSED(dst);
99 ARM_COMPUTE_ERROR_ON(!bool(validate_arguments(src, dst)));
100
101 Window win;
102 win.use_tensor_dimensions(src->tensor_shape());
103 return win;
104}
105
106Status CpuFloorKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
107{
108 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
109 return Status{};
110}
111
112void CpuFloorKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
113{
114 ARM_COMPUTE_UNUSED(info);
115 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
116 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
117
118 ARM_COMPUTE_ERROR_ON(tensors.empty());
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100119 ARM_COMPUTE_ERROR_ON(_run_method == nullptr);
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000120
121 const ITensor *src = tensors.get_const_tensor(TensorType::ACL_SRC);
122 ITensor *dst = tensors.get_tensor(TensorType::ACL_DST);
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100123 const auto len = static_cast<int>(window.x().end()) - static_cast<int>(window.x().start());
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000124
125 Window win{ window };
126 win.set(Window::DimX, Window::Dimension(0, 1, 1));
127
128 Iterator src_it(src, win);
129 Iterator dst_it(dst, win);
130
131 execute_window_loop(win, [&](const Coordinates &)
132 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100133 _run_method(src_it.ptr(), dst_it.ptr(), len);
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000134 },
135 src_it, dst_it);
136}
137
138const char *CpuFloorKernel::name() const
139{
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100140 return _name.c_str();
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000141}
Giorgio Arena5ae8d802021-11-18 18:02:13 +0000142
143const std::vector<CpuFloorKernel::FloorKernel> &CpuFloorKernel::get_available_kernels()
144{
145 return available_kernels;
146}
147
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000148} // namespace kernels
149} // namespace cpu
150} // namespace arm_compute