blob: bcac1a41fcb7145b83b93fb1563abcad6b268cdb [file] [log] [blame]
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00001/*
2 * Copyright (c) 2017-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/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{
45struct FloorSelectorData
46{
47 DataType dt;
48};
49
50using FloorSelectorPtr = std::add_pointer<bool(const FloorSelectorData &data)>::type;
51using FloorUKernelPtr = std::add_pointer<void(const void *, void *, int)>::type;
52
53struct FloorUKernel
54{
55 const char *name;
56 const FloorSelectorPtr is_selected;
Georgios Pinitas5fdde992021-06-25 05:42:57 +010057 FloorUKernelPtr ukernel;
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000058};
59
60static const FloorUKernel available_kernels[] =
61{
62 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010063 "neon_fp16_floor",
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000064 [](const FloorSelectorData & data) { return data.dt == DataType::F16; },
65 REGISTER_FP16_NEON(arm_compute::cpu::fp16_neon_floor)
66 },
67 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +010068 "neon_fp32_floor",
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000069 [](const FloorSelectorData & data) { return data.dt == DataType::F32; },
70 REGISTER_FP32_NEON(arm_compute::cpu::fp32_neon_floor)
71 },
72};
73
74/** Micro-kernel selector
75 *
76 * @param[in] data Selection data passed to help pick the appropriate micro-kernel
77 *
78 * @return A matching micro-kernel else nullptr
79 */
80const FloorUKernel *get_implementation(const FloorSelectorData &data)
81{
82 for(const auto &uk : available_kernels)
83 {
84 if(uk.is_selected(data))
85 {
86 return &uk;
87 }
88 }
89 return nullptr;
90}
91
92Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst)
93{
94 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
95
96 const auto *uk = get_implementation(FloorSelectorData{ src->data_type() });
Georgios Pinitas5fdde992021-06-25 05:42:57 +010097 ARM_COMPUTE_RETURN_ERROR_ON(uk == nullptr || uk->ukernel == nullptr);
Georgios Pinitas70eb53b2021-01-06 19:42:21 +000098
99 // Validate in case of configured output
100 if(dst->total_size() > 0)
101 {
102 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
103 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(src, dst);
104 }
105
106 return Status{};
107}
108} // namespace
109
110void CpuFloorKernel::configure(const ITensorInfo *src, ITensorInfo *dst)
111{
112 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100113 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst));
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000114
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000115 auto_init_if_empty(*dst, src->tensor_shape(), 1, src->data_type());
116
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100117 const auto *uk = get_implementation(FloorSelectorData{ src->data_type() });
118 ARM_COMPUTE_ERROR_ON_NULLPTR(uk);
119
120 _run_method = uk->ukernel;
121 _name = std::string("CpuFloorKernel").append("/").append(uk->name);
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000122
123 // Configure kernel window
124 const Window win = calculate_max_window(*src, Steps());
125
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000126 ICPPKernel::configure(win);
127}
128
129Window CpuFloorKernel::infer_window(const ITensorInfo *src, const ITensorInfo *dst)
130{
131 ARM_COMPUTE_UNUSED(dst);
132 ARM_COMPUTE_ERROR_ON(!bool(validate_arguments(src, dst)));
133
134 Window win;
135 win.use_tensor_dimensions(src->tensor_shape());
136 return win;
137}
138
139Status CpuFloorKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
140{
141 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
142 return Status{};
143}
144
145void CpuFloorKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
146{
147 ARM_COMPUTE_UNUSED(info);
148 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
149 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
150
151 ARM_COMPUTE_ERROR_ON(tensors.empty());
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100152 ARM_COMPUTE_ERROR_ON(_run_method == nullptr);
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000153
154 const ITensor *src = tensors.get_const_tensor(TensorType::ACL_SRC);
155 ITensor *dst = tensors.get_tensor(TensorType::ACL_DST);
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100156 const auto len = static_cast<int>(window.x().end()) - static_cast<int>(window.x().start());
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000157
158 Window win{ window };
159 win.set(Window::DimX, Window::Dimension(0, 1, 1));
160
161 Iterator src_it(src, win);
162 Iterator dst_it(dst, win);
163
164 execute_window_loop(win, [&](const Coordinates &)
165 {
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100166 _run_method(src_it.ptr(), dst_it.ptr(), len);
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000167 },
168 src_it, dst_it);
169}
170
171const char *CpuFloorKernel::name() const
172{
Georgios Pinitas5fdde992021-06-25 05:42:57 +0100173 return _name.c_str();
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000174}
175} // namespace kernels
176} // namespace cpu
177} // namespace arm_compute