blob: 13687a540d71ce2994a60189936a807494e7da35 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2016-2020 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000024#include "arm_compute/core/CL/kernels/CLDepthConvertLayerKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010028#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Utils.h"
34#include "arm_compute/core/Validate.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
37#include <cstddef>
38#include <set>
39#include <string>
40
Georgios Pinitas303f0db2018-11-19 11:56:51 +000041namespace arm_compute
42{
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010043namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044{
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010045Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, ConvertPolicy policy, uint32_t shift)
46{
47 ARM_COMPUTE_UNUSED(policy);
48 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
49 ARM_COMPUTE_RETURN_ERROR_ON(input == output);
Georgios Pinitas303f0db2018-11-19 11:56:51 +000050 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input,
51 1,
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000052 DataType::U8, DataType::S8, DataType::QSYMM8_PER_CHANNEL, DataType::S16,
Georgios Pinitas303f0db2018-11-19 11:56:51 +000053 DataType::U16, DataType::U32, DataType::S32, DataType::F16,
54 DataType::F32);
55 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output,
56 1,
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000057 DataType::U8, DataType::S8, DataType::QASYMM8, DataType::S16,
Georgios Pinitas303f0db2018-11-19 11:56:51 +000058 DataType::U16, DataType::U32, DataType::S32, DataType::F16,
59 DataType::F32);
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010060 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == output->data_type(), "Input and output data types must be different");
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000061 ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_data_type_float(input->data_type()) && shift != 0, "Shift is used only with integer non-quantized inputs");
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_data_type_quantized(input->data_type()) && shift != 0, "Shift is used only with integer non-quantized inputs");
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010063 ARM_COMPUTE_RETURN_ERROR_ON(shift >= 8);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010065 // Validate in case of configured output
66 if(output->total_size() > 0)
67 {
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
69 }
70
71 return Status{};
72}
73} // namespace
74
75void CLDepthConvertLayerKernel::configure(const ICLTensor *input, ICLTensor *output, ConvertPolicy policy, uint32_t shift)
76{
77 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010078
steniu01da37e2f2017-06-29 10:14:58 +010079 // Auto initialize output shape if not initialized (We can only auto-configure the shape, datatype must be given)
80 set_shape_if_empty(*output->info(), input->info()->tensor_shape());
81
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010082 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), policy, shift));
steniu01da37e2f2017-06-29 10:14:58 +010083
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084 // Get data sizes
85 const size_t input_size = data_size_from_type(input->info()->data_type());
86 const size_t output_size = data_size_from_type(output->info()->data_type());
87
Georgios Pinitasc10bc0b2019-01-09 11:55:00 +000088 // Get number of elements to process per iterations
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +010089 constexpr unsigned int num_elems_processed_per_iteration = 16;
Georgios Pinitasc10bc0b2019-01-09 11:55:00 +000090
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010091 // Set build options
92 CLBuildOptions build_opts;
Georgios Pinitasc10bc0b2019-01-09 11:55:00 +000093 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010094 build_opts.add_option("-DDATA_TYPE_IN=" + get_cl_type_from_data_type(input->info()->data_type()));
95 build_opts.add_option("-DDATA_TYPE_OUT=" + get_cl_type_from_data_type(output->info()->data_type()));
Georgios Pinitas303f0db2018-11-19 11:56:51 +000096 // Conversions from float always SATURATE as out-of-bounds conversion from float->integer is implementation defined
97 build_opts.add_option_if(is_data_type_float(input->info()->data_type()) || policy == ConvertPolicy::SATURATE, "-DSATURATE");
98 build_opts.add_option_if(is_data_type_float(input->info()->data_type()) || is_data_type_float(output->info()->data_type()), "-DIS_DATA_TYPE_FLOAT");
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000099 build_opts.add_option_if(is_data_type_quantized(input->info()->data_type()), "-DIS_DATA_TYPE_QUANTIZED");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100
101 // Create kernel
Georgios Pinitas303f0db2018-11-19 11:56:51 +0000102 const std::string kernel_name = (input_size >= output_size) ? "convert_depth_down" : "convert_depth_up";
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +0100103 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104
105 // Set shift arg
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000106 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the input and output parameters
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107 _kernel.setArg(idx++, shift);
108
109 // Configure kernel
Georgios Pinitasc10bc0b2019-01-09 11:55:00 +0000110 ICLSimple3DKernel::configure(input, output, num_elems_processed_per_iteration);
111
112 // Collapse window
113 const Window &full_window = window();
114 Window collapsed_window = full_window.collapse_if_possible(full_window, Window::DimZ);
115 ICLKernel::configure_internal(collapsed_window);
Gary Antcliffefffbdbc2019-05-28 11:40:21 +0100116
117 // Set config_id for enabling LWS tuning
118 _config_id = kernel_name;
119 _config_id += "_";
120 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
121 _config_id += "_";
122 _config_id += support::cpp11::to_string(input->info()->dimension(0));
123 _config_id += "_";
124 _config_id += support::cpp11::to_string(input->info()->dimension(1));
125 _config_id += "_";
126 _config_id += support::cpp11::to_string(output->info()->dimension(0));
127 _config_id += "_";
128 _config_id += support::cpp11::to_string(output->info()->dimension(1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129}
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +0100130
131Status CLDepthConvertLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, ConvertPolicy policy, uint32_t shift)
132{
133 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, policy, shift));
134
135 return Status{};
136}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100137} // namespace arm_compute