blob: 53889f3a6b4dc7bc5892658224995a6b16c70eb1 [file] [log] [blame]
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +01001/*
Ramy Elgammal84683712022-12-16 13:39:33 +00002 * Copyright (c) 2017-2022 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"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/CL/CLValidate.h"
35#include "src/core/helpers/WindowHelpers.h"
36#include "support/Cast.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010037
38#include <string>
39
Sheri Zhang7e20e292021-02-02 11:49:34 +000040/** [ClReshapeKernel Kernel] **/
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010041namespace arm_compute
42{
Sheri Zhang7e20e292021-02-02 11:49:34 +000043namespace opencl
44{
45namespace kernels
46{
Giuseppe Rossini84797632018-08-22 12:07:48 +010047namespace
48{
Sheri Zhang7e20e292021-02-02 11:49:34 +000049Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst)
Giuseppe Rossini84797632018-08-22 12:07:48 +010050{
Sheri Zhang7e20e292021-02-02 11:49:34 +000051 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
52 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src);
53 ARM_COMPUTE_RETURN_ERROR_ON(src->data_type() == DataType::UNKNOWN);
Giuseppe Rossini84797632018-08-22 12:07:48 +010054
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010055 if (dst->tensor_shape().total_size() != 0)
Gian Marco Iodice0aee2dd2021-04-12 09:10:09 +010056 {
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(src, dst);
59 ARM_COMPUTE_RETURN_ERROR_ON(src->tensor_shape().total_size() != dst->tensor_shape().total_size());
60 }
Giuseppe Rossini84797632018-08-22 12:07:48 +010061
62 return Status{};
63}
Giuseppe Rossini84797632018-08-22 12:07:48 +010064} // namespace
65
Giorgio Arena4a95bba2021-06-28 11:00:27 +010066ClReshapeKernel::ClReshapeKernel()
67{
68 _type = CLKernelType::ELEMENTWISE;
69}
70
Sheri Zhang7e20e292021-02-02 11:49:34 +000071void ClReshapeKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010072{
Sheri Zhang7e20e292021-02-02 11:49:34 +000073 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
74 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst));
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010075
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010076 auto padding_info = get_padding_info({src, dst});
Sheri Zhang11d73272020-10-28 14:01:55 +000077
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010078 // Create kernel
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079 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 +010080 _kernel = create_kernel(compile_context, "reshape_layer", build_opts);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010081
82 // Add static arguments
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010083 const cl_int2 src_shape = {
84 {static_cast<cl_int>(src->tensor_shape()[0]), static_cast<cl_int>(src->tensor_shape()[1])}};
85 const cl_int2 dst_shape = {
86 {static_cast<cl_int>(dst->tensor_shape()[0]), static_cast<cl_int>(dst->tensor_shape()[1])}};
Sheri Zhang7e20e292021-02-02 11:49:34 +000087 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the src and dst parameters
88 _kernel.setArg<cl_int2>(idx++, src_shape);
89 _kernel.setArg<cl_int2>(idx++, dst_shape);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010090
91 // Configure kernel window
Ramy Elgammal84683712022-12-16 13:39:33 +000092 Window win = calculate_max_window(*dst);
Anthony Barbierb6eb3532018-08-08 13:20:04 +010093 ICLKernel::configure_internal(win);
Sheri Zhang11d73272020-10-28 14:01:55 +000094
95 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010096}
97
Sheri Zhang7e20e292021-02-02 11:49:34 +000098Status ClReshapeKernel::validate(const ITensorInfo *src, const ITensorInfo *dst)
Giuseppe Rossini84797632018-08-22 12:07:48 +010099{
Sheri Zhang7e20e292021-02-02 11:49:34 +0000100 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst));
Giuseppe Rossini84797632018-08-22 12:07:48 +0100101
102 return Status{};
103}
104
Sheri Zhang7e20e292021-02-02 11:49:34 +0000105void ClReshapeKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100106{
107 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
108 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
109
110 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
111 Window slice = window_collapsed.first_slice_window_3D();
112
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100113 const auto src =
114 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
115 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100116
Sheri Zhang7e20e292021-02-02 11:49:34 +0000117 // Set srcs
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100118 unsigned int idx = 0;
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100119 add_3D_tensor_argument(idx, src, window_collapsed);
120 add_3D_tensor_argument(idx, dst, window_collapsed);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100121 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100122}
Sheri Zhang7e20e292021-02-02 11:49:34 +0000123} // namespace kernels
124} // namespace opencl
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100125} // namespace arm_compute
Sheri Zhang7e20e292021-02-02 11:49:34 +0000126/** [ClReshapeKernel Kernel] **/