blob: f53fe87a70b71464baeaf0c9fd5ca6a016deeb64 [file] [log] [blame]
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +00001/*
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/CLRangeKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLValidate.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "utils/Utils.h"
30
31using namespace arm_compute;
32
33namespace
34{
35size_t num_of_elements_in_range(const float start, const float end, const float step)
36{
37 ARM_COMPUTE_ERROR_ON_MSG(step == 0, "CLRange Step cannot be 0");
38 return size_t(std::ceil((end - start) / step));
39}
40
41unsigned int get_num_elems_processed_per_iteration(const DataType dt)
42{
43 unsigned int num_elems_processed_per_iteration = preferred_vector_width(CLKernelLibrary::get().get_device(), dt);
44 if(num_elems_processed_per_iteration > 8)
45 {
46 num_elems_processed_per_iteration = 8; //kernel uses only 8 lanes.
47 }
48 return num_elems_processed_per_iteration;
49}
50
51Status validate_arguments(const ITensorInfo &output, const float start, const float end, const float step)
52{
53 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&output,
54 1,
55 DataType::U8, DataType::S8, DataType::QASYMM8,
56 DataType::U16, DataType::S16,
57 DataType::U32, DataType::S32,
58 DataType::F16, DataType::F32);
59 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&output);
60
61 ARM_COMPUTE_RETURN_ERROR_ON_MSG((start == end), "start of the requested sequence must not be equal to the end");
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((start < end) && (step <= 0)), "step must be greater than 0 when start < end");
63 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((start > end) && (step >= 0)), "step must be less than 0 when start > end");
64
65 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!utils::check_value_range(start, output.data_type(), output.quantization_info()), "start value is outside the range of the data type");
66 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!utils::check_value_range(end, output.data_type(), output.quantization_info()), "end value is outside the range of the data type");
67 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!utils::check_value_range(step, output.data_type(), output.quantization_info()), "step value is outside the range of the data type");
68
69 ARM_COMPUTE_RETURN_ERROR_ON_MSG((start == end), "start of the requested sequence must not be equal to the end");
70
71 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output.num_dimensions() != 1, "Output has to be a 1-D tensor");
72 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output.tensor_shape().total_size() < num_of_elements_in_range(start, end, step), "Output tensor size is incorrect");
73
74 return Status{};
75}
76
77std::pair<Status, Window> validate_and_configure_window(ITensorInfo &output, const float start, const float end, const float step)
78{
79 unsigned int num_elems_processed_per_iteration = get_num_elems_processed_per_iteration(output.data_type());
80 // Auto initialize output if not initialized
81 auto_init_if_empty(output, TensorShape(num_of_elements_in_range(start, end, step)), 1, output.data_type(), output.quantization_info());
82
83 // Configure kernel window
84 Window win = calculate_max_window(output, Steps(num_elems_processed_per_iteration));
85
86 AccessWindowHorizontal output_access(&output, 0, num_elems_processed_per_iteration);
87 bool window_changed = update_window_and_padding(win, output_access);
88 output_access.set_valid_region(win, ValidRegion(Coordinates(), TensorShape(num_of_elements_in_range(start, end, step))));
89 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
90 return std::make_pair(err, win);
91}
92} // namespace
93
94CLRangeKernel::CLRangeKernel()
95 : _start(0), _end(1), _step(1), _output(nullptr)
96{
97}
98
99void CLRangeKernel::configure(ICLTensor *output, const float start, const float end, const float step)
100{
101 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
102
103 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*(output->info()), start, end, step));
104
105 // Configure kernel window
106 auto win_config = validate_and_configure_window(*(output->info()), start, end, step);
107 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
108
109 _start = start;
110 _end = end;
111 _step = step;
112 _output = output;
113
114 std::string kernel_name = "range";
115
116 unsigned int num_elems_processed_per_iteration = get_num_elems_processed_per_iteration(output->info()->data_type());
117 // Set build options
118 CLBuildOptions build_opts;
119 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
120 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
121 build_opts.add_option("-DSTART=" + support::cpp11::to_string(start));
122 build_opts.add_option("-DSTEP=" + support::cpp11::to_string(step));
123 if(is_data_type_quantized_asymmetric(output->info()->data_type()))
124 {
125 build_opts.add_option("-DOFFSET_OUT=" + support::cpp11::to_string(output->info()->quantization_info().offset));
126 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(output->info()->quantization_info().scale));
127 kernel_name += "_quantized";
128 }
129 // Create kernel
130 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
131 ICLKernel::configure_internal(win_config.second);
132
133 // Set config_id for enabling LWS tuning
134 _config_id = kernel_name;
135 _config_id += "_";
136 _config_id += lower_string(string_from_data_type(output->info()->data_type()));
137 _config_id += "_";
138 _config_id += support::cpp11::to_string(output->info()->dimension(0));
139}
140
141Status CLRangeKernel::validate(const ITensorInfo *output, const float start, const float end, const float step)
142{
143 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
144
145 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*output, start, end, step));
146 ARM_COMPUTE_RETURN_ON_ERROR((validate_and_configure_window(*(output->clone()), start, end, step)).first);
147
148 return Status{};
149}
150
151void CLRangeKernel::run(const Window &window, cl::CommandQueue &queue)
152{
153 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
154 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
155 unsigned int idx = 0;
156 add_1D_tensor_argument(idx, _output, window);
157
158 enqueue(queue, *this, window, lws_hint());
159}