blob: 246bd9c8382cad316985d5537f8f7eb584393127 [file] [log] [blame]
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +01001/*
Sheri Zhang7e20e292021-02-02 11:49:34 +00002 * Copyright (c) 2017-2021 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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClReshapeKernel.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010025
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Helpers.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010031#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Utils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/CL/CLValidate.h"
34#include "src/core/helpers/WindowHelpers.h"
35#include "support/Cast.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010036
37#include <string>
38
Sheri Zhang7e20e292021-02-02 11:49:34 +000039/** [ClReshapeKernel Kernel] **/
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010040namespace arm_compute
41{
Sheri Zhang7e20e292021-02-02 11:49:34 +000042namespace opencl
43{
44namespace kernels
45{
Giuseppe Rossini84797632018-08-22 12:07:48 +010046namespace
47{
Sheri Zhang7e20e292021-02-02 11:49:34 +000048Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst)
Giuseppe Rossini84797632018-08-22 12:07:48 +010049{
Sheri Zhang7e20e292021-02-02 11:49:34 +000050 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
51 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src);
52 ARM_COMPUTE_RETURN_ERROR_ON(src->data_type() == DataType::UNKNOWN);
Giuseppe Rossini84797632018-08-22 12:07:48 +010053
Gian Marco Iodice0aee2dd2021-04-12 09:10:09 +010054 if(dst->tensor_shape().total_size() != 0)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(src, dst);
58 ARM_COMPUTE_RETURN_ERROR_ON(src->tensor_shape().total_size() != dst->tensor_shape().total_size());
59 }
Giuseppe Rossini84797632018-08-22 12:07:48 +010060
61 return Status{};
62}
Giuseppe Rossini84797632018-08-22 12:07:48 +010063} // namespace
64
Giorgio Arena4a95bba2021-06-28 11:00:27 +010065ClReshapeKernel::ClReshapeKernel()
66{
67 _type = CLKernelType::ELEMENTWISE;
68}
69
Sheri Zhang7e20e292021-02-02 11:49:34 +000070void ClReshapeKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010071{
Sheri Zhang7e20e292021-02-02 11:49:34 +000072 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
73 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst));
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010074
Sheri Zhang7e20e292021-02-02 11:49:34 +000075 auto padding_info = get_padding_info({ src, dst });
Sheri Zhang11d73272020-10-28 14:01:55 +000076
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010077 // Create kernel
Sheri Zhang7e20e292021-02-02 11:49:34 +000078 std::set<std::string> build_opts = { "-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(src->element_size()) };
Manuel Bottini4c6bd512020-04-08 10:15:51 +010079 _kernel = create_kernel(compile_context, "reshape_layer", build_opts);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010080
81 // Add static arguments
Sheri Zhang7e20e292021-02-02 11:49:34 +000082 const cl_int2 src_shape =
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010083 {
84 {
Sheri Zhang7e20e292021-02-02 11:49:34 +000085 static_cast<cl_int>(src->tensor_shape()[0]),
86 static_cast<cl_int>(src->tensor_shape()[1])
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010087 }
88 };
Sheri Zhang7e20e292021-02-02 11:49:34 +000089 const cl_int2 dst_shape =
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010090 {
91 {
Sheri Zhang7e20e292021-02-02 11:49:34 +000092 static_cast<cl_int>(dst->tensor_shape()[0]),
93 static_cast<cl_int>(dst->tensor_shape()[1])
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010094 }
95 };
Sheri Zhang7e20e292021-02-02 11:49:34 +000096 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the src and dst parameters
97 _kernel.setArg<cl_int2>(idx++, src_shape);
98 _kernel.setArg<cl_int2>(idx++, dst_shape);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010099
100 // Configure kernel window
Sheri Zhang7e20e292021-02-02 11:49:34 +0000101 Window win = calculate_max_window(*src);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100102 ICLKernel::configure_internal(win);
Sheri Zhang11d73272020-10-28 14:01:55 +0000103
104 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100105}
106
Sheri Zhang7e20e292021-02-02 11:49:34 +0000107Status ClReshapeKernel::validate(const ITensorInfo *src, const ITensorInfo *dst)
Giuseppe Rossini84797632018-08-22 12:07:48 +0100108{
Sheri Zhang7e20e292021-02-02 11:49:34 +0000109 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst));
Giuseppe Rossini84797632018-08-22 12:07:48 +0100110
111 return Status{};
112}
113
Sheri Zhang7e20e292021-02-02 11:49:34 +0000114void ClReshapeKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100115{
116 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
117 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
118
119 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
120 Window slice = window_collapsed.first_slice_window_3D();
121
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100122 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
123 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100124
Sheri Zhang7e20e292021-02-02 11:49:34 +0000125 // Set srcs
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100126 unsigned int idx = 0;
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100127 add_3D_tensor_argument(idx, src, window_collapsed);
128 add_3D_tensor_argument(idx, dst, window_collapsed);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100129 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100130}
Sheri Zhang7e20e292021-02-02 11:49:34 +0000131} // namespace kernels
132} // namespace opencl
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100133} // namespace arm_compute
Sheri Zhang7e20e292021-02-02 11:49:34 +0000134/** [ClReshapeKernel Kernel] **/