blob: f0781341d598aa3165b4ab408acb9c3cffbd201d [file] [log] [blame]
Georgios Pinitasd8e765b2017-08-02 13:44:33 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Georgios Pinitasd8e765b2017-08-02 13:44:33 +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/core/NEON/kernels/NEFloorKernel.h"
25
Georgios Pinitas565bf2d2018-08-31 11:46:49 +010026#include "arm_compute/core/CPP/Validate.h"
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010027#include "arm_compute/core/Coordinates.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/IAccessWindow.h"
30#include "arm_compute/core/ITensor.h"
31#include "arm_compute/core/NEON/INEKernel.h"
32#include "arm_compute/core/NEON/NEMath.h"
33#include "arm_compute/core/Validate.h"
34
35#include <arm_neon.h>
36
Georgios Pinitas565bf2d2018-08-31 11:46:49 +010037namespace arm_compute
38{
39namespace
40{
41Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
42{
43 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
44 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input);
45 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
46
47 // Validate in case of configured output
48 if(output->total_size() > 0)
49 {
50 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
51 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
52 }
53
54 return Status{};
55}
Georgios Pinitas565bf2d2018-08-31 11:46:49 +010056} // namespace
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010057
58void NEFloorKernel::configure(const ITensor *input, ITensor *output)
59{
60 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
61
Michalis Spyroua4a96012017-10-09 15:46:30 +010062 // Auto initialize output
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010063 auto_init_if_empty(*output->info(), input->info()->tensor_shape(), 1, input->info()->data_type());
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010064
Georgios Pinitas565bf2d2018-08-31 11:46:49 +010065 // Validate
66 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010067
68 _input = input;
69 _output = output;
70
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010071 // Configure kernel window
Michalis Spyrouca8c0f72020-02-20 15:21:21 +000072 Window win = calculate_max_window(*input->info(), Steps());
73
74 Coordinates coord;
75 coord.set_num_dimensions(output->info()->num_dimensions());
76 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
77
78 INEKernel::configure(win);
Georgios Pinitas565bf2d2018-08-31 11:46:49 +010079}
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010080
Georgios Pinitas565bf2d2018-08-31 11:46:49 +010081Status NEFloorKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
82{
83 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
Georgios Pinitas565bf2d2018-08-31 11:46:49 +010084 return Status{};
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010085}
86
Moritz Pflanzerc186b572017-09-07 09:48:04 +010087void NEFloorKernel::run(const Window &window, const ThreadInfo &info)
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010088{
Moritz Pflanzerc186b572017-09-07 09:48:04 +010089 ARM_COMPUTE_UNUSED(info);
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010090 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
91 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
92
Georgios Pinitas565bf2d2018-08-31 11:46:49 +010093 const DataType data_type = _input->info()->data_type();
94
Michalis Spyrouca8c0f72020-02-20 15:21:21 +000095 const auto window_start_x = static_cast<int>(window.x().start());
96 const auto window_end_x = static_cast<int>(window.x().end());
97 const int window_step_x = 16 / _input->info()->element_size();
98
99 Window win{ window };
100 win.set(Window::DimX, Window::Dimension(0, 1, 1));
101 Iterator input(_input, win);
102 Iterator output(_output, win);
Georgios Pinitasd8e765b2017-08-02 13:44:33 +0100103
Georgios Pinitas565bf2d2018-08-31 11:46:49 +0100104 if(data_type == DataType::F32)
Georgios Pinitasd8e765b2017-08-02 13:44:33 +0100105 {
Michalis Spyrouca8c0f72020-02-20 15:21:21 +0000106 execute_window_loop(win, [&](const Coordinates &)
Georgios Pinitas565bf2d2018-08-31 11:46:49 +0100107 {
Michalis Spyrouca8c0f72020-02-20 15:21:21 +0000108 const auto input_ptr = reinterpret_cast<const float *>(input.ptr());
109 const auto output_ptr = reinterpret_cast<float *>(output.ptr());
110
111 int x = window_start_x;
112 for(; x <= (window_end_x - window_step_x); x += window_step_x)
113 {
114 const float32x4_t res = vfloorq_f32(vld1q_f32(input_ptr + x));
115 vst1q_f32(output_ptr + x, res);
116 }
117
118 // Compute left-over elements
119 for(; x < window_end_x; ++x)
120 {
121 *(output_ptr + x) = std::floor(*(input_ptr + x));
122 }
Georgios Pinitas565bf2d2018-08-31 11:46:49 +0100123 },
124 input, output);
125 }
126#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
127 else if(data_type == DataType::F16)
128 {
Michalis Spyrouca8c0f72020-02-20 15:21:21 +0000129 execute_window_loop(win, [&](const Coordinates &)
Georgios Pinitas565bf2d2018-08-31 11:46:49 +0100130 {
Michalis Spyrouca8c0f72020-02-20 15:21:21 +0000131 const auto input_ptr = reinterpret_cast<const float16_t *>(input.ptr());
132 const auto output_ptr = reinterpret_cast<float16_t *>(output.ptr());
133
134 int x = window_start_x;
135 for(; x <= (window_end_x - window_step_x); x += window_step_x)
136 {
137 const float16x8_t res = vfloorq_f16(vld1q_f16(input_ptr + x));
138 vst1q_f16(output_ptr + x, res);
139 }
140
141 // Compute left-over elements
142 for(; x < window_end_x; ++x)
143 {
144 *(output_ptr + x) = std::floor(*(input_ptr + x));
145 }
Georgios Pinitas565bf2d2018-08-31 11:46:49 +0100146 },
147 input, output);
148 }
149#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
150 else
151 {
152 ARM_COMPUTE_ERROR("Invalid data type!");
153 }
Georgios Pinitasd8e765b2017-08-02 13:44:33 +0100154}
Georgios Pinitas565bf2d2018-08-31 11:46:49 +0100155} // namespace arm_compute