blob: ffbd295646613845125151b4948da524cb28f147 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +01002 * Copyright (c) 2016-2018 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"
35
36#include <cstddef>
37#include <set>
38#include <string>
39
40using namespace arm_compute;
41
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010042namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043{
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010044Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, ConvertPolicy policy, uint32_t shift)
45{
46 ARM_COMPUTE_UNUSED(policy);
47 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
48 ARM_COMPUTE_RETURN_ERROR_ON(input == output);
49 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S16,
50 DataType::U16, DataType::U32, DataType::S32,
51 DataType::F16, DataType::F32);
52 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8, DataType::S16,
53 DataType::U16, DataType::U32, DataType::S32,
54 DataType::F16, DataType::F32);
55 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == output->data_type(), "Input and output data types must be different");
56 ARM_COMPUTE_RETURN_ERROR_ON(shift >= 8);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057
58 // Check if convertion is supported
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010059 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::U8 && (output->data_type() != DataType::U16 && output->data_type() != DataType::S16
60 && output->data_type() != DataType::U32 && output->data_type() != DataType::S32),
61 "Only data types supported [in] U8 -> [out] U16, S16, U32, S32");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010063 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::U16 && (output->data_type() != DataType::U8 && output->data_type() != DataType::U32
64 && output->data_type() != DataType::S32),
65 "Only data types supported [in] U16 -> [out] U8, U32, S32");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010067 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::S16 && (output->data_type() != DataType::U8 && output->data_type() != DataType::U32
68 && output->data_type() != DataType::S32),
69 "Only data types supported [in] S16 -> [out] U8, U32, S32");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010071 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::U32 && (output->data_type() != DataType::U8 && output->data_type() != DataType::U16
72 && output->data_type() != DataType::S16),
73 "Only data types supported [in] U32 -> [out] U8, U16, S16");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +010075 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::S32 && (output->data_type() != DataType::U8 && output->data_type() != DataType::U16
76 && output->data_type() != DataType::S16),
77 "Only data types supported [in] S32 -> [out] U8, U16, S16");
78
79 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::F16 && output->data_type() != DataType::F32,
80 "Only data types supported [in] F16 -> [out] F32");
81
82 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::F32 && output->data_type() != DataType::F16,
83 "Only data types supported [in] F32 -> [out] F16");
84
85 // Validate in case of configured output
86 if(output->total_size() > 0)
87 {
88 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
89 }
90
91 return Status{};
92}
93} // namespace
94
95void CLDepthConvertLayerKernel::configure(const ICLTensor *input, ICLTensor *output, ConvertPolicy policy, uint32_t shift)
96{
97 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098
steniu01da37e2f2017-06-29 10:14:58 +010099 // Auto initialize output shape if not initialized (We can only auto-configure the shape, datatype must be given)
100 set_shape_if_empty(*output->info(), input->info()->tensor_shape());
101
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +0100102 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), policy, shift));
steniu01da37e2f2017-06-29 10:14:58 +0100103
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104 // Get data sizes
105 const size_t input_size = data_size_from_type(input->info()->data_type());
106 const size_t output_size = data_size_from_type(output->info()->data_type());
107
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +0100108 // Set build options
109 CLBuildOptions build_opts;
110 build_opts.add_option("-DDATA_TYPE_IN=" + get_cl_type_from_data_type(input->info()->data_type()));
111 build_opts.add_option("-DDATA_TYPE_OUT=" + get_cl_type_from_data_type(output->info()->data_type()));
112 // Down conversions from float always SATURATE as out-of-bounds conversion from float->integer is implementation defined
113 build_opts.add_option_if(input_size > output_size, ((policy == ConvertPolicy::WRAP) && !is_data_type_float(input->info()->data_type())) ? "-DWRAP" : "-DSATURATE");
114 build_opts.add_option_if(is_data_type_float(input->info()->data_type()), "-DIS_DATA_TYPE_FLOAT");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115
116 // Create kernel
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +0100117 const std::string kernel_name = (input_size > output_size) ? "convert_depth_down" : "convert_depth_up";
118 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119
120 // Set shift arg
121 unsigned int idx = 2 * num_arguments_per_2D_tensor(); //Skip the input and output parameters
122 _kernel.setArg(idx++, shift);
123
124 // Configure kernel
125 constexpr unsigned int num_elems_processed_per_iteration = 16;
126 ICLSimple2DKernel::configure(input, output, num_elems_processed_per_iteration);
127}
Michele Di Giorgio6b4e6042018-08-02 12:02:48 +0100128
129Status CLDepthConvertLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, ConvertPolicy policy, uint32_t shift)
130{
131 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, policy, shift));
132
133 return Status{};
134}