blob: 186ed2a38cc87d7dc4c49d9f98dcd2909d2e2d38 [file] [log] [blame]
Giuseppe Rossinid7647d42018-07-17 18:13:13 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Giuseppe Rossinid7647d42018-07-17 18:13:13 +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/CL/kernels/CLMemsetKernel.h"
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010025#include "arm_compute/core/CL/ICLTensor.h"
Sheri Zhang0de45d02020-04-17 14:59:13 +010026#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010027#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000028#include "support/StringSupport.h"
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010029
30namespace arm_compute
31{
32CLMemsetKernel::CLMemsetKernel()
George Wort894066d2019-02-15 15:12:52 +000033 : ICLKernel(), _tensor(nullptr), _full_window()
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010034{
35}
36
37void CLMemsetKernel::configure(ICLTensor *tensor,
George Wort894066d2019-02-15 15:12:52 +000038 const PixelValue &constant_value,
39 Window *window)
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010040{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010041 configure(CLKernelLibrary::get().get_compile_context(), tensor, constant_value, window);
42}
43
Manuel Bottini679fc962020-04-21 16:08:53 +010044void CLMemsetKernel::configure(const CLCompileContext &compile_context, ICLTensor *tensor,
Manuel Bottini4c6bd512020-04-08 10:15:51 +010045 const PixelValue &constant_value,
46 Window *window)
47{
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010048 ARM_COMPUTE_ERROR_ON_NULLPTR(tensor);
George Wort894066d2019-02-15 15:12:52 +000049 ARM_COMPUTE_ERROR_THROW_ON(validate(tensor->info(), constant_value, window));
50
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010051 _tensor = tensor;
52
George Wort894066d2019-02-15 15:12:52 +000053 const DataType data_type = tensor->info()->data_type();
54 const int vec_size_x = 16 / tensor->info()->element_size();
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010055
56 // Create and update the window (if needed)
George Wort894066d2019-02-15 15:12:52 +000057 _full_window = calculate_max_window(*tensor->info());
58 Window win = _full_window;
59 if(window != nullptr)
60 {
61 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(win, *window);
62 win = *window;
63 }
64
65 const int output_width_x = win.num_iterations(0);
66 const bool multi_access_x = output_width_x >= vec_size_x;
67 const bool remainder_x = output_width_x % vec_size_x > 0;
68
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010069 if(multi_access_x)
70 {
George Wort894066d2019-02-15 15:12:52 +000071 win.set(Window::DimX, Window::Dimension(win.x().start(), ceil_to_multiple(win.x().end(), vec_size_x), vec_size_x));
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010072 }
73 ICLKernel::configure_internal(win);
74
75 // Create kernel
76 CLBuildOptions build_opts;
77 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
78 build_opts.add_option("-DCONSTANT_VALUE=" + string_from_pixel_value(constant_value, data_type));
79 build_opts.add_option_if(multi_access_x, "-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
George Wort894066d2019-02-15 15:12:52 +000080 build_opts.add_option_if(multi_access_x && remainder_x, "-DLAST_ACCESSED_X=" + support::cpp11::to_string(std::max<int>(output_width_x - vec_size_x, 0)));
Manuel Bottini4c6bd512020-04-08 10:15:51 +010081 _kernel = create_kernel(compile_context, "memset", build_opts.options());
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010082}
83
George Wort894066d2019-02-15 15:12:52 +000084Status CLMemsetKernel::validate(const ITensorInfo *tensor, const PixelValue &constant_value, Window *window)
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010085{
86 ARM_COMPUTE_UNUSED(tensor);
87 ARM_COMPUTE_UNUSED(constant_value);
George Wort894066d2019-02-15 15:12:52 +000088 if(window != nullptr)
89 {
90 ARM_COMPUTE_RETURN_ERROR_ON(window->x().step() != 1);
91 }
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010092 return Status{};
93}
94
95void CLMemsetKernel::run(const Window &window, cl::CommandQueue &queue)
96{
97 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
98 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
99
100 // Collapse all the batches on the third
George Wort894066d2019-02-15 15:12:52 +0000101 Window collapsed = window.collapse_if_possible(_full_window, Window::DimZ);
102 Window slice = collapsed.first_slice_window_3D();
Giuseppe Rossinid7647d42018-07-17 18:13:13 +0100103
104 do
105 {
106 unsigned int idx = 0;
George Wort894066d2019-02-15 15:12:52 +0000107 add_3D_tensor_argument(idx, _tensor, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100108 enqueue(queue, *this, slice, lws_hint());
Giuseppe Rossinid7647d42018-07-17 18:13:13 +0100109 }
George Wort894066d2019-02-15 15:12:52 +0000110 while(collapsed.slide_window_slice_3D(slice));
Giuseppe Rossinid7647d42018-07-17 18:13:13 +0100111}
112} // namespace arm_compute