blob: c7efa9a82dd5959316e6ec38c233d30b35f524fa [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
40using namespace arm_compute;
41
42CLReshapeLayerKernel::CLReshapeLayerKernel()
43 : _input(nullptr), _output(nullptr)
44{
45}
46
47void CLReshapeLayerKernel::configure(const ICLTensor *input, ICLTensor *output)
48{
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010049 ARM_COMPUTE_ERROR_ON_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010050 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QASYMM8,
51 DataType::U16, DataType::S16,
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010052 DataType::U32, DataType::S32, DataType::F16, DataType::F32);
53 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
54 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Daniil Efremoveed841c2017-11-09 19:05:25 +070055 ARM_COMPUTE_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010056 ARM_COMPUTE_ERROR_ON(input->info()->tensor_shape().total_size() != output->info()->tensor_shape().total_size());
57
58 _input = input;
59 _output = output;
60
61 constexpr unsigned int num_elems_processed_per_iteration = 1;
62
63 // Create kernel
64 std::set<std::string> build_opts = { "-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()) };
65 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("reshape_layer", build_opts));
66
67 // Add static arguments
68 const cl_int2 input_shape =
69 {
70 {
71 static_cast<cl_int>(_input->info()->tensor_shape()[0]),
72 static_cast<cl_int>(_input->info()->tensor_shape()[1])
73 }
74 };
75 const cl_int2 output_shape =
76 {
77 {
78 static_cast<cl_int>(_output->info()->tensor_shape()[0]),
79 static_cast<cl_int>(_output->info()->tensor_shape()[1])
80 }
81 };
82 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the input and output parameters
83 _kernel.setArg<cl_int2>(idx++, input_shape);
84 _kernel.setArg<cl_int2>(idx++, output_shape);
85
86 // Configure kernel window
87 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration));
88
89 AccessWindowHorizontal input_access(input->info(), 0, num_elems_processed_per_iteration);
90 AccessWindowStatic output_access(output->info(), 0, 0, output->info()->tensor_shape().x(), output->info()->tensor_shape().y());
91 update_window_and_padding(win, input_access, output_access);
92
93 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->info()->tensor_shape()));
94
Anthony Barbierb6eb3532018-08-08 13:20:04 +010095 ICLKernel::configure_internal(win);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010096}
97
98void CLReshapeLayerKernel::run(const Window &window, cl::CommandQueue &queue)
99{
100 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
101 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
102
103 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
104 Window slice = window_collapsed.first_slice_window_3D();
105
106 // Set inputs
107 unsigned int idx = 0;
108 add_3D_tensor_argument(idx, _input, window_collapsed);
109 add_3D_tensor_argument(idx, _output, window_collapsed);
110 enqueue(queue, *this, slice);
111}