blob: a6053d97e3e8503c5e34fdc10fcfacf86af3ca03 [file] [log] [blame]
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +01001/*
Georgios Pinitas275f99c2019-08-23 12:44:11 +01002 * Copyright (c) 2017-2019 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{
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000047 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Giuseppe Rossini84797632018-08-22 12:07:48 +010048 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000049 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Giuseppe Rossini84797632018-08-22 12:07:48 +010050
51 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
53 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape().total_size() != output->tensor_shape().total_size());
54
55 return Status{};
56}
57
58} // namespace
59
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010060CLReshapeLayerKernel::CLReshapeLayerKernel()
61 : _input(nullptr), _output(nullptr)
62{
63}
64
65void CLReshapeLayerKernel::configure(const ICLTensor *input, ICLTensor *output)
66{
Giuseppe Rossini84797632018-08-22 12:07:48 +010067 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
68 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010069
70 _input = input;
71 _output = output;
72
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010073 // Create kernel
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000074 std::set<std::string> build_opts = { "-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(input->info()->element_size()) };
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010075 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("reshape_layer", build_opts));
76
77 // Add static arguments
78 const cl_int2 input_shape =
79 {
80 {
81 static_cast<cl_int>(_input->info()->tensor_shape()[0]),
82 static_cast<cl_int>(_input->info()->tensor_shape()[1])
83 }
84 };
85 const cl_int2 output_shape =
86 {
87 {
88 static_cast<cl_int>(_output->info()->tensor_shape()[0]),
89 static_cast<cl_int>(_output->info()->tensor_shape()[1])
90 }
91 };
92 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the input and output parameters
93 _kernel.setArg<cl_int2>(idx++, input_shape);
94 _kernel.setArg<cl_int2>(idx++, output_shape);
95
96 // Configure kernel window
Giuseppe Rossini84797632018-08-22 12:07:48 +010097 Window win = calculate_max_window(*input->info());
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010098
Giuseppe Rossini84797632018-08-22 12:07:48 +010099 // Set the output valid region
100 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100101 ICLKernel::configure_internal(win);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100102}
103
Giuseppe Rossini84797632018-08-22 12:07:48 +0100104Status CLReshapeLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
105{
106 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
107
108 return Status{};
109}
110
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100111void CLReshapeLayerKernel::run(const Window &window, cl::CommandQueue &queue)
112{
113 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
114 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
115
116 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
117 Window slice = window_collapsed.first_slice_window_3D();
118
119 // Set inputs
120 unsigned int idx = 0;
121 add_3D_tensor_argument(idx, _input, window_collapsed);
122 add_3D_tensor_argument(idx, _output, window_collapsed);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100123 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100124}
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000125/** [CLReshapeLayerKernel Kernel] **/