blob: 85f79988c9abad897b15349f929a339ca5533570 [file] [log] [blame]
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLRangeKernel.h"
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000027#include "arm_compute/core/CL/ICLTensor.h"
Michalis Spyrouf63885b2019-01-16 14:18:09 +000028#include "arm_compute/core/Utils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010029#include "src/core/CL/CLValidate.h"
30#include "src/core/helpers/AutoConfiguration.h"
31#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000032#include "support/StringSupport.h"
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000033
Manuel Bottinia2432052020-11-25 18:38:05 +000034namespace arm_compute
35{
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000036namespace
37{
Manuel Bottinia2432052020-11-25 18:38:05 +000038constexpr unsigned int vector_size_byte_opencl = 16;
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000039
Manuel Bottinia2432052020-11-25 18:38:05 +000040Status validate_arguments(const ITensorInfo *output, const float start, const float end, const float step)
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000041{
Manuel Bottinia2432052020-11-25 18:38:05 +000042 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
43 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output,
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000044 1,
45 DataType::U8, DataType::S8, DataType::QASYMM8,
46 DataType::U16, DataType::S16,
47 DataType::U32, DataType::S32,
48 DataType::F16, DataType::F32);
Manuel Bottinia2432052020-11-25 18:38:05 +000049 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(output);
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000050
51 ARM_COMPUTE_RETURN_ERROR_ON_MSG((start == end), "start of the requested sequence must not be equal to the end");
52 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((start < end) && (step <= 0)), "step must be greater than 0 when start < end");
53 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((start > end) && (step >= 0)), "step must be less than 0 when start > end");
54
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000055 ARM_COMPUTE_RETURN_ERROR_ON_MSG((start == end), "start of the requested sequence must not be equal to the end");
56
Manuel Bottinia2432052020-11-25 18:38:05 +000057 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");
58 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");
59 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");
60
61 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->num_dimensions() != 1, "Output has to be a 1-D tensor");
62 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 +000063
64 return Status{};
65}
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000066} // namespace
67
68CLRangeKernel::CLRangeKernel()
69 : _start(0), _end(1), _step(1), _output(nullptr)
70{
71}
72
73void CLRangeKernel::configure(ICLTensor *output, const float start, const float end, const float step)
74{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010075 configure(CLKernelLibrary::get().get_compile_context(), output, start, end, step);
76}
77
Manuel Bottini2803f702020-04-21 16:20:03 +010078void CLRangeKernel::configure(const CLCompileContext &compile_context, ICLTensor *output, const float start, const float end, const float step)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010079{
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000080 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
Manuel Bottinia2432052020-11-25 18:38:05 +000081 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(output->info(), start, end, step));
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000082
83 // Configure kernel window
Manuel Bottinia2432052020-11-25 18:38:05 +000084 unsigned int num_elems_processed_per_iteration = adjust_vec_size(vector_size_byte_opencl / output->info()->element_size(), output->info()->dimension(0));
85 Window win = calculate_max_window(*output->info(), Steps(num_elems_processed_per_iteration));
86
87 auto padding_info = get_padding_info({ output });
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000088
89 _start = start;
90 _end = end;
91 _step = step;
92 _output = output;
93
94 std::string kernel_name = "range";
95
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +000096 // Set build options
97 CLBuildOptions build_opts;
98 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
99 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Manuel Bottinia2432052020-11-25 18:38:05 +0000100 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(output->info()->dimension(0) % num_elems_processed_per_iteration));
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000101 build_opts.add_option("-DSTART=" + support::cpp11::to_string(start));
102 build_opts.add_option("-DSTEP=" + support::cpp11::to_string(step));
103 if(is_data_type_quantized_asymmetric(output->info()->data_type()))
104 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100105 const UniformQuantizationInfo qinfo = output->info()->quantization_info().uniform();
106 build_opts.add_option("-DOFFSET_OUT=" + support::cpp11::to_string(qinfo.offset));
107 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(qinfo.scale));
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000108 kernel_name += "_quantized";
109 }
110 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100111 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Manuel Bottinia2432052020-11-25 18:38:05 +0000112 ICLKernel::configure_internal(win);
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000113
114 // Set config_id for enabling LWS tuning
115 _config_id = kernel_name;
116 _config_id += "_";
117 _config_id += lower_string(string_from_data_type(output->info()->data_type()));
118 _config_id += "_";
119 _config_id += support::cpp11::to_string(output->info()->dimension(0));
Manuel Bottinia2432052020-11-25 18:38:05 +0000120 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000121}
122
123Status CLRangeKernel::validate(const ITensorInfo *output, const float start, const float end, const float step)
124{
Manuel Bottinia2432052020-11-25 18:38:05 +0000125 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(output, start, end, step));
Vidhya Sudhan Loganathan5e96be72018-12-18 14:17:00 +0000126 return Status{};
127}
128
129void CLRangeKernel::run(const Window &window, cl::CommandQueue &queue)
130{
131 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
132 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
133 unsigned int idx = 0;
134 add_1D_tensor_argument(idx, _output, window);
135
136 enqueue(queue, *this, window, lws_hint());
137}
Manuel Bottinia2432052020-11-25 18:38:05 +0000138} // namespace arm_compute