blob: 97b5f01df46136c09d33830f6e4c89954f13f308 [file] [log] [blame]
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +00001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2018-2020 ARM Limited.
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +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 */
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"
Michalis Spyrouf63885b2019-01-16 14:18:09 +000029#include "arm_compute/core/Utils.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000030#include "support/StringSupport.h"
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000031
32using namespace arm_compute;
33
34namespace
35{
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000036unsigned int get_num_elems_processed_per_iteration(const DataType dt)
37{
38 unsigned int num_elems_processed_per_iteration = preferred_vector_width(CLKernelLibrary::get().get_device(), dt);
39 if(num_elems_processed_per_iteration > 8)
40 {
41 num_elems_processed_per_iteration = 8; //kernel uses only 8 lanes.
42 }
43 return num_elems_processed_per_iteration;
44}
45
46Status validate_arguments(const ITensorInfo &output, const float start, const float end, const float step)
47{
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&output,
49 1,
50 DataType::U8, DataType::S8, DataType::QASYMM8,
51 DataType::U16, DataType::S16,
52 DataType::U32, DataType::S32,
53 DataType::F16, DataType::F32);
54 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&output);
55
56 ARM_COMPUTE_RETURN_ERROR_ON_MSG((start == end), "start of the requested sequence must not be equal to the end");
57 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((start < end) && (step <= 0)), "step must be greater than 0 when start < end");
58 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((start > end) && (step >= 0)), "step must be less than 0 when start > end");
59
Michalis Spyrouf63885b2019-01-16 14:18:09 +000060 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!check_value_range(start, output.data_type(), output.quantization_info()), "start value is outside the range of the data type");
61 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!check_value_range(end, output.data_type(), output.quantization_info()), "end value is outside the range of the data type");
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!check_value_range(step, output.data_type(), output.quantization_info()), "step value is outside the range of the data type");
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000063
64 ARM_COMPUTE_RETURN_ERROR_ON_MSG((start == end), "start of the requested sequence must not be equal to the end");
65
66 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output.num_dimensions() != 1, "Output has to be a 1-D tensor");
Michalis Spyrouf63885b2019-01-16 14:18:09 +000067 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output.tensor_shape().total_size() < num_of_elements_in_range(start, end, step), "Output tensor size is incorrect");
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000068
69 return Status{};
70}
71
72std::pair<Status, Window> validate_and_configure_window(ITensorInfo &output, const float start, const float end, const float step)
73{
74 unsigned int num_elems_processed_per_iteration = get_num_elems_processed_per_iteration(output.data_type());
75 // Auto initialize output if not initialized
Michalis Spyrouf63885b2019-01-16 14:18:09 +000076 auto_init_if_empty(output, TensorShape(num_of_elements_in_range(start, end, step)), 1, output.data_type(), output.quantization_info());
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000077
78 // Configure kernel window
79 Window win = calculate_max_window(output, Steps(num_elems_processed_per_iteration));
80
81 AccessWindowHorizontal output_access(&output, 0, num_elems_processed_per_iteration);
82 bool window_changed = update_window_and_padding(win, output_access);
Michalis Spyrouf63885b2019-01-16 14:18:09 +000083 output_access.set_valid_region(win, ValidRegion(Coordinates(), TensorShape(num_of_elements_in_range(start, end, step))));
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000084 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
85 return std::make_pair(err, win);
86}
87} // namespace
88
89CLRangeKernel::CLRangeKernel()
90 : _start(0), _end(1), _step(1), _output(nullptr)
91{
92}
93
94void CLRangeKernel::configure(ICLTensor *output, const float start, const float end, const float step)
95{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010096 configure(CLKernelLibrary::get().get_compile_context(), output, start, end, step);
97}
98
99void CLRangeKernel::configure(CLCompileContext &compile_context, ICLTensor *output, const float start, const float end, const float step)
100{
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000101 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 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100125 const UniformQuantizationInfo qinfo = output->info()->quantization_info().uniform();
126 build_opts.add_option("-DOFFSET_OUT=" + support::cpp11::to_string(qinfo.offset));
127 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(qinfo.scale));
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000128 kernel_name += "_quantized";
129 }
130 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100131 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000132 ICLKernel::configure_internal(win_config.second);
133
134 // Set config_id for enabling LWS tuning
135 _config_id = kernel_name;
136 _config_id += "_";
137 _config_id += lower_string(string_from_data_type(output->info()->data_type()));
138 _config_id += "_";
139 _config_id += support::cpp11::to_string(output->info()->dimension(0));
140}
141
142Status CLRangeKernel::validate(const ITensorInfo *output, const float start, const float end, const float step)
143{
144 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
145
146 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*output, start, end, step));
147 ARM_COMPUTE_RETURN_ON_ERROR((validate_and_configure_window(*(output->clone()), start, end, step)).first);
148
149 return Status{};
150}
151
152void CLRangeKernel::run(const Window &window, cl::CommandQueue &queue)
153{
154 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
155 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
156 unsigned int idx = 0;
157 add_1D_tensor_argument(idx, _output, window);
158
159 enqueue(queue, *this, window, lws_hint());
160}