blob: 4da3fa0e03097ac88335c7644f25ebda747ed2f1 [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 */
Sheri Zhang7e20e292021-02-02 11:49:34 +000024#include "src/core/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"
31#include "arm_compute/core/IAccessWindow.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Utils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/AccessWindowStatic.h"
35#include "src/core/CL/CLValidate.h"
36#include "src/core/helpers/WindowHelpers.h"
37#include "support/Cast.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010038
39#include <string>
40
Sheri Zhang7e20e292021-02-02 11:49:34 +000041/** [ClReshapeKernel Kernel] **/
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010042namespace arm_compute
43{
Sheri Zhang7e20e292021-02-02 11:49:34 +000044namespace opencl
45{
46namespace kernels
47{
Giuseppe Rossini84797632018-08-22 12:07:48 +010048namespace
49{
Sheri Zhang7e20e292021-02-02 11:49:34 +000050Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst)
Giuseppe Rossini84797632018-08-22 12:07:48 +010051{
Sheri Zhang7e20e292021-02-02 11:49:34 +000052 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
53 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src);
54 ARM_COMPUTE_RETURN_ERROR_ON(src->data_type() == DataType::UNKNOWN);
Giuseppe Rossini84797632018-08-22 12:07:48 +010055
Sheri Zhang7e20e292021-02-02 11:49:34 +000056 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());
Giuseppe Rossini84797632018-08-22 12:07:48 +010059
60 return Status{};
61}
Giuseppe Rossini84797632018-08-22 12:07:48 +010062} // namespace
63
Sheri Zhang7e20e292021-02-02 11:49:34 +000064void ClReshapeKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010065{
Sheri Zhang7e20e292021-02-02 11:49:34 +000066 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
67 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst));
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010068
Sheri Zhang7e20e292021-02-02 11:49:34 +000069 auto padding_info = get_padding_info({ src, dst });
Sheri Zhang11d73272020-10-28 14:01:55 +000070
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010071 // Create kernel
Sheri Zhang7e20e292021-02-02 11:49:34 +000072 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 +010073 _kernel = create_kernel(compile_context, "reshape_layer", build_opts);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010074
75 // Add static arguments
Sheri Zhang7e20e292021-02-02 11:49:34 +000076 const cl_int2 src_shape =
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010077 {
78 {
Sheri Zhang7e20e292021-02-02 11:49:34 +000079 static_cast<cl_int>(src->tensor_shape()[0]),
80 static_cast<cl_int>(src->tensor_shape()[1])
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010081 }
82 };
Sheri Zhang7e20e292021-02-02 11:49:34 +000083 const cl_int2 dst_shape =
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010084 {
85 {
Sheri Zhang7e20e292021-02-02 11:49:34 +000086 static_cast<cl_int>(dst->tensor_shape()[0]),
87 static_cast<cl_int>(dst->tensor_shape()[1])
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010088 }
89 };
Sheri Zhang7e20e292021-02-02 11:49:34 +000090 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the src and dst parameters
91 _kernel.setArg<cl_int2>(idx++, src_shape);
92 _kernel.setArg<cl_int2>(idx++, dst_shape);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010093
94 // Configure kernel window
Sheri Zhang7e20e292021-02-02 11:49:34 +000095 Window win = calculate_max_window(*src);
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010096
Sheri Zhang7e20e292021-02-02 11:49:34 +000097 // Set the dst valid region
98 dst->set_valid_region(ValidRegion(Coordinates(), dst->tensor_shape()));
Anthony Barbierb6eb3532018-08-08 13:20:04 +010099 ICLKernel::configure_internal(win);
Sheri Zhang11d73272020-10-28 14:01:55 +0000100
101 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100102}
103
Sheri Zhang7e20e292021-02-02 11:49:34 +0000104Status ClReshapeKernel::validate(const ITensorInfo *src, const ITensorInfo *dst)
Giuseppe Rossini84797632018-08-22 12:07:48 +0100105{
Sheri Zhang7e20e292021-02-02 11:49:34 +0000106 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst));
Giuseppe Rossini84797632018-08-22 12:07:48 +0100107
108 return Status{};
109}
110
Sheri Zhang7e20e292021-02-02 11:49:34 +0000111void ClReshapeKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100112{
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
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100119 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
120 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100121
Sheri Zhang7e20e292021-02-02 11:49:34 +0000122 // Set srcs
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100123 unsigned int idx = 0;
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100124 add_3D_tensor_argument(idx, src, window_collapsed);
125 add_3D_tensor_argument(idx, dst, window_collapsed);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100126 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100127}
Sheri Zhang7e20e292021-02-02 11:49:34 +0000128} // namespace kernels
129} // namespace opencl
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100130} // namespace arm_compute
Sheri Zhang7e20e292021-02-02 11:49:34 +0000131/** [ClReshapeKernel Kernel] **/