blob: 358e84012bf93d3048a5cec6f08a870eca8ae05c [file] [log] [blame]
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2017-2021, 2023 Arm Limited.
Georgios Pinitasf47f7182021-01-15 09:29:50 +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/gpu/cl/kernels/ClFloorKernel.h"
Georgios Pinitasf47f7182021-01-15 09:29:50 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Utils.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000032#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Georgios Pinitasf47f7182021-01-15 09:29:50 +000033#include "arm_compute/core/Validate.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034
Georgios Pinitasf47f7182021-01-15 09:29:50 +000035#include "src/core/CL/CLValidate.h"
36#include "src/core/helpers/AutoConfiguration.h"
37#include "src/core/helpers/WindowHelpers.h"
38#include "support/Cast.h"
39#include "support/StringSupport.h"
40
41namespace arm_compute
42{
43namespace opencl
44{
45namespace kernels
46{
47namespace
48{
49Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst)
50{
51 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
52 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src);
53 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src, 1, DataType::F16, DataType::F32);
54
55 // Validate in case of configured output
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010056 if (dst->total_size() > 0)
Georgios Pinitasf47f7182021-01-15 09:29:50 +000057 {
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(src, dst);
60 }
61
62 return Status{};
63}
64} // namespace
65
Giorgio Arena4a95bba2021-06-28 11:00:27 +010066ClFloorKernel::ClFloorKernel()
67{
68 _type = CLKernelType::ELEMENTWISE;
69}
70
Georgios Pinitasf47f7182021-01-15 09:29:50 +000071void ClFloorKernel::configure(const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
72{
73 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
74
75 // Auto initialize output
76 auto_init_if_empty(*dst, src->tensor_shape(), 1, src->data_type());
77
78 // Validate
79 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010080 auto padding_info = get_padding_info({src, dst});
Georgios Pinitasf47f7182021-01-15 09:29:50 +000081
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010082 const unsigned int vec_size_x = adjust_vec_size(max_cl_vector_width / src->element_size(), src->dimension(0));
Georgios Pinitasf47f7182021-01-15 09:29:50 +000083 const int vec_size_x_leftovers = src->dimension(0) % vec_size_x;
84 CLBuildOptions build_opts;
85 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
86 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
87 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftovers));
88
89 // Create kernel
90 _kernel = create_kernel(compile_context, "floor_layer", build_opts.options());
91
92 // Configure kernel window
93 Window win = calculate_max_window(*src, Steps(vec_size_x));
94 IClKernel::configure_internal(win);
95 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
96}
97
98Status ClFloorKernel::validate(const ITensorInfo *src, const ITensorInfo *dst)
99{
100 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst));
101 return Status{};
102}
103
104void ClFloorKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
105{
106 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
107 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(IClKernel::window(), window);
108
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100109 const auto src =
110 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
111 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000112
113 Window collapsed = window.collapse_if_possible(IClKernel::window(), Window::DimZ);
114 Window slice = collapsed.first_slice_window_3D();
115
116 do
117 {
118 unsigned int idx = 0;
119 add_3D_tensor_argument(idx, src, slice);
120 add_3D_tensor_argument(idx, dst, slice);
121 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100122 } while (collapsed.slide_window_slice_3D(slice));
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000123}
124} // namespace kernels
125} // namespace opencl
126} // namespace arm_compute