blob: dc1d33869f6482b39fea3eee555aedc50df136a0 [file] [log] [blame]
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +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/CLFlattenLayerKernel.h"
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010025#include "arm_compute/core/CL/ICLTensor.h"
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010026#include "arm_compute/core/TensorInfo.h"
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010027#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010028#include "src/core/helpers/AutoConfiguration.h"
29#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000030#include "support/StringSupport.h"
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010031
32using namespace arm_compute::misc::shape_calculator;
33
34namespace arm_compute
35{
36namespace
37{
38Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
39{
Manuel Bottini8481d832019-12-10 15:28:40 +000040 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini8481d832019-12-10 15:28:40 +000041 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010042
43 // Checks performed when output is configured
44 if(output->total_size() != 0)
45 {
46 const TensorInfo tensor_info_output = input->clone()->set_tensor_shape(compute_flatten_shape(input));
47
48 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
49 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000050 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010051 }
52
53 return Status{};
54}
55
56std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
57{
58 // Output tensor auto initialization if not yet initialized
59 auto_init_if_empty(*output, input->clone()->set_tensor_shape(compute_flatten_shape(input)));
60
61 Window win = calculate_max_window(*input, Steps()); // Flatten does not need paddings
62
63 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
64
65 return std::make_pair(Status{}, win);
66}
67} // namespace
68
69CLFlattenLayerKernel::CLFlattenLayerKernel()
70 : _input(nullptr), _output(nullptr)
71{
72}
73
74void CLFlattenLayerKernel::configure(const ICLTensor *input, ICLTensor *output)
75{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010076 configure(CLKernelLibrary::get().get_compile_context(), input, output);
77}
78
Manuel Bottini256c0b92020-04-21 13:29:30 +010079void CLFlattenLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010080{
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010081 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
82 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
83
84 _input = input;
85 _output = output;
86
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010087 // Configure kernel window
88 auto win_config = validate_and_configure_window(input->info(), output->info());
89 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +010090 ICLKernel::configure_internal(win_config.second);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010091
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +000092 CLBuildOptions build_opts;
Sheri Zhang0de45d02020-04-17 14:59:13 +010093 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(data_size_from_type(input->info()->data_type())));
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +000094 build_opts.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(input->info()->dimension(0)));
95 build_opts.add_option("-DSRC_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(1)));
96 build_opts.add_option("-DSRC_DEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
97 build_opts.add_option_if(output->info()->num_dimensions() > 2, "-DDST_DIM1=" + support::cpp11::to_string(output->info()->dimension(1)));
98
99 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100100 _kernel = create_kernel(compile_context, "flatten", build_opts.options());
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +0000101
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100102 // Set config_id for enabling LWS tuning
103 _config_id = "flatten";
104 _config_id += "_";
105 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
106 _config_id += "_";
107 _config_id += support::cpp11::to_string(input->info()->dimension(0));
108 _config_id += "_";
109 _config_id += support::cpp11::to_string(input->info()->dimension(1));
110 _config_id += "_";
111 _config_id += support::cpp11::to_string(input->info()->dimension(2));
112 _config_id += "_";
113 _config_id += support::cpp11::to_string(output->info()->dimension(0));
114 _config_id += "_";
115 _config_id += support::cpp11::to_string(output->info()->dimension(1));
116}
117
118Status CLFlattenLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
119{
120 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
121 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
122 return Status{};
123}
124
125void CLFlattenLayerKernel::run(const Window &window, cl::CommandQueue &queue)
126{
127 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
128 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
129
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +0000130 Window collapsed_window = window.collapse(ICLKernel::window(), Window::DimZ);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100131
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +0000132 Window output_window;
133 output_window.use_tensor_dimensions(_output->info()->tensor_shape());
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100134
135 // Run kernel
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +0000136 unsigned int idx = 0;
137 add_4D_tensor_argument(idx, _input, collapsed_window);
138 add_3D_tensor_argument(idx, _output, output_window);
139 enqueue(queue, *this, collapsed_window, lws_hint());
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100140}
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100141} // namespace arm_compute