blob: a22f5cb4cbbf3aefc1bd14329eb9cc6b0c3dcfaf [file] [log] [blame]
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +00001/*
Manuel Bottini053e7512018-12-28 15:05:20 +00002 * Copyright (c) 2018-2019 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"
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000030
31using namespace arm_compute;
32
33namespace
34{
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000035unsigned int get_num_elems_processed_per_iteration(const DataType dt)
36{
37 unsigned int num_elems_processed_per_iteration = preferred_vector_width(CLKernelLibrary::get().get_device(), dt);
38 if(num_elems_processed_per_iteration > 8)
39 {
40 num_elems_processed_per_iteration = 8; //kernel uses only 8 lanes.
41 }
42 return num_elems_processed_per_iteration;
43}
44
45Status validate_arguments(const ITensorInfo &output, const float start, const float end, const float step)
46{
47 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&output,
48 1,
49 DataType::U8, DataType::S8, DataType::QASYMM8,
50 DataType::U16, DataType::S16,
51 DataType::U32, DataType::S32,
52 DataType::F16, DataType::F32);
53 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&output);
54
55 ARM_COMPUTE_RETURN_ERROR_ON_MSG((start == end), "start of the requested sequence must not be equal to the end");
56 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((start < end) && (step <= 0)), "step must be greater than 0 when start < end");
57 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((start > end) && (step >= 0)), "step must be less than 0 when start > end");
58
Michalis Spyrouf63885b2019-01-16 14:18:09 +000059 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");
60 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");
61 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 +000062
63 ARM_COMPUTE_RETURN_ERROR_ON_MSG((start == end), "start of the requested sequence must not be equal to the end");
64
65 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 +000066 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 +000067
68 return Status{};
69}
70
71std::pair<Status, Window> validate_and_configure_window(ITensorInfo &output, const float start, const float end, const float step)
72{
73 unsigned int num_elems_processed_per_iteration = get_num_elems_processed_per_iteration(output.data_type());
74 // Auto initialize output if not initialized
Michalis Spyrouf63885b2019-01-16 14:18:09 +000075 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 +000076
77 // Configure kernel window
78 Window win = calculate_max_window(output, Steps(num_elems_processed_per_iteration));
79
80 AccessWindowHorizontal output_access(&output, 0, num_elems_processed_per_iteration);
81 bool window_changed = update_window_and_padding(win, output_access);
Michalis Spyrouf63885b2019-01-16 14:18:09 +000082 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 +000083 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
84 return std::make_pair(err, win);
85}
86} // namespace
87
88CLRangeKernel::CLRangeKernel()
89 : _start(0), _end(1), _step(1), _output(nullptr)
90{
91}
92
93void CLRangeKernel::configure(ICLTensor *output, const float start, const float end, const float step)
94{
95 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
96
97 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*(output->info()), start, end, step));
98
99 // Configure kernel window
100 auto win_config = validate_and_configure_window(*(output->info()), start, end, step);
101 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
102
103 _start = start;
104 _end = end;
105 _step = step;
106 _output = output;
107
108 std::string kernel_name = "range";
109
110 unsigned int num_elems_processed_per_iteration = get_num_elems_processed_per_iteration(output->info()->data_type());
111 // Set build options
112 CLBuildOptions build_opts;
113 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
114 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
115 build_opts.add_option("-DSTART=" + support::cpp11::to_string(start));
116 build_opts.add_option("-DSTEP=" + support::cpp11::to_string(step));
117 if(is_data_type_quantized_asymmetric(output->info()->data_type()))
118 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100119 const UniformQuantizationInfo qinfo = output->info()->quantization_info().uniform();
120 build_opts.add_option("-DOFFSET_OUT=" + support::cpp11::to_string(qinfo.offset));
121 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(qinfo.scale));
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000122 kernel_name += "_quantized";
123 }
124 // Create kernel
125 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
126 ICLKernel::configure_internal(win_config.second);
127
128 // Set config_id for enabling LWS tuning
129 _config_id = kernel_name;
130 _config_id += "_";
131 _config_id += lower_string(string_from_data_type(output->info()->data_type()));
132 _config_id += "_";
133 _config_id += support::cpp11::to_string(output->info()->dimension(0));
134}
135
136Status CLRangeKernel::validate(const ITensorInfo *output, const float start, const float end, const float step)
137{
138 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
139
140 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*output, start, end, step));
141 ARM_COMPUTE_RETURN_ON_ERROR((validate_and_configure_window(*(output->clone()), start, end, step)).first);
142
143 return Status{};
144}
145
146void CLRangeKernel::run(const Window &window, cl::CommandQueue &queue)
147{
148 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
149 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
150 unsigned int idx = 0;
151 add_1D_tensor_argument(idx, _output, window);
152
153 enqueue(queue, *this, window, lws_hint());
154}