blob: ab53897543ea9d6776f01495fd8e13aaaa9513cf [file] [log] [blame]
Giuseppe Rossinid7647d42018-07-17 18:13:13 +01001/*
2 * Copyright (c) 2018 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 */
24#include "arm_compute/core/CL/kernels/CLMemsetKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
29#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/Utils.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
34
35namespace arm_compute
36{
37CLMemsetKernel::CLMemsetKernel()
38 : ICLKernel(), _tensor(nullptr)
39{
40}
41
42void CLMemsetKernel::configure(ICLTensor *tensor,
43 const PixelValue &constant_value)
44{
45 ARM_COMPUTE_ERROR_ON_NULLPTR(tensor);
46 _tensor = tensor;
47
48 const DataType data_type = tensor->info()->data_type();
49 const int vec_size_x = 16 / tensor->info()->element_size();
50 const int output_width_x = tensor->info()->tensor_shape().x();
51 const bool multi_access_x = (output_width_x / vec_size_x > 0);
52
53 // Create and update the window (if needed)
54 Window win = calculate_max_window(*tensor->info());
55 if(multi_access_x)
56 {
57 win.set(Window::DimX,
58 Window::Dimension(win.x().start(), ceil_to_multiple(win.x().end(), vec_size_x), vec_size_x));
59 }
60 ICLKernel::configure_internal(win);
61
62 // Create kernel
63 CLBuildOptions build_opts;
64 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
65 build_opts.add_option("-DCONSTANT_VALUE=" + string_from_pixel_value(constant_value, data_type));
66 build_opts.add_option_if(multi_access_x, "-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
67 build_opts.add_option_if(multi_access_x, "-DLAST_ACCESSED_X=" + support::cpp11::to_string(std::max<int>(output_width_x - vec_size_x, 0)));
68 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("memset", build_opts.options()));
69}
70
71Status CLMemsetKernel::validate(const ITensorInfo *tensor, const PixelValue &constant_value)
72{
73 ARM_COMPUTE_UNUSED(tensor);
74 ARM_COMPUTE_UNUSED(constant_value);
75 return Status{};
76}
77
78void CLMemsetKernel::run(const Window &window, cl::CommandQueue &queue)
79{
80 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
81 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
82
83 // Collapse all the batches on the third
84 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimY);
85 Window slice = collapsed.first_slice_window_2D();
86
87 do
88 {
89 unsigned int idx = 0;
90 add_2D_tensor_argument(idx, _tensor, slice);
91 enqueue(queue, *this, slice);
92 }
93 while(collapsed.slide_window_slice_2D(slice));
94}
95} // namespace arm_compute