blob: aa1339dd1e65b332334802645969d98f1598a4ba [file] [log] [blame]
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +01001/*
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +01002 * Copyright (c) 2017-2018 ARM Limited.
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +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 */
24#include "arm_compute/core/CL/kernels/CLReshapeLayerKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010029#include "arm_compute/core/CL/CLValidate.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010030#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/CL/OpenCL.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/IAccessWindow.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Utils.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010036#include "arm_compute/core/Window.h"
37
38#include <string>
39
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +000040/** [CLReshapeLayerKernel Kernel] **/
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010041using namespace arm_compute;
42
Giuseppe Rossini84797632018-08-22 12:07:48 +010043namespace
44{
45Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
46{
47 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QASYMM8,
49 DataType::U16, DataType::S16,
50 DataType::U32, DataType::S32, DataType::F16, DataType::F32);
51 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
52
53 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
54 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
55 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape().total_size() != output->tensor_shape().total_size());
56
57 return Status{};
58}
59
60} // namespace
61
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010062CLReshapeLayerKernel::CLReshapeLayerKernel()
63 : _input(nullptr), _output(nullptr)
64{
65}
66
67void CLReshapeLayerKernel::configure(const ICLTensor *input, ICLTensor *output)
68{
Giuseppe Rossini84797632018-08-22 12:07:48 +010069 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
70 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010071
72 _input = input;
73 _output = output;
74
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010075 // Create kernel
76 std::set<std::string> build_opts = { "-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()) };
77 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("reshape_layer", build_opts));
78
79 // Add static arguments
80 const cl_int2 input_shape =
81 {
82 {
83 static_cast<cl_int>(_input->info()->tensor_shape()[0]),
84 static_cast<cl_int>(_input->info()->tensor_shape()[1])
85 }
86 };
87 const cl_int2 output_shape =
88 {
89 {
90 static_cast<cl_int>(_output->info()->tensor_shape()[0]),
91 static_cast<cl_int>(_output->info()->tensor_shape()[1])
92 }
93 };
94 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the input and output parameters
95 _kernel.setArg<cl_int2>(idx++, input_shape);
96 _kernel.setArg<cl_int2>(idx++, output_shape);
97
98 // Configure kernel window
Giuseppe Rossini84797632018-08-22 12:07:48 +010099 Window win = calculate_max_window(*input->info());
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100100
Giuseppe Rossini84797632018-08-22 12:07:48 +0100101 // Set the output valid region
102 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100103 ICLKernel::configure_internal(win);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100104}
105
Giuseppe Rossini84797632018-08-22 12:07:48 +0100106Status CLReshapeLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
107{
108 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
109
110 return Status{};
111}
112
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100113void CLReshapeLayerKernel::run(const Window &window, cl::CommandQueue &queue)
114{
115 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
116 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
117
118 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
119 Window slice = window_collapsed.first_slice_window_3D();
120
121 // Set inputs
122 unsigned int idx = 0;
123 add_3D_tensor_argument(idx, _input, window_collapsed);
124 add_3D_tensor_argument(idx, _output, window_collapsed);
125 enqueue(queue, *this, slice);
126}
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000127/** [CLReshapeLayerKernel Kernel] **/