blob: ef47d2019a90dfc05c0e6ee7cd0ee603cf8e01d1 [file] [log] [blame]
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +01001/*
Isabella Gottardi0a1090a2019-02-14 18:07:36 +00002 * Copyright (c) 2018-2019 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"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/CLValidate.h"
29#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Error.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/Types.h"
36#include "arm_compute/core/Validate.h"
37#include "arm_compute/core/utils/misc/ShapeCalculator.h"
38#include "support/ToolchainSupport.h"
39
40using namespace arm_compute::misc::shape_calculator;
41
42namespace arm_compute
43{
44namespace
45{
46Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
47{
48 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
49 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QASYMM8,
50 DataType::U16, DataType::S16,
51 DataType::U32, DataType::S32,
52 DataType::F16, DataType::F32);
53 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
54
55 // Checks performed when output is configured
56 if(output->total_size() != 0)
57 {
58 const TensorInfo tensor_info_output = input->clone()->set_tensor_shape(compute_flatten_shape(input));
59
60 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000062 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010063 }
64
65 return Status{};
66}
67
68std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
69{
70 // Output tensor auto initialization if not yet initialized
71 auto_init_if_empty(*output, input->clone()->set_tensor_shape(compute_flatten_shape(input)));
72
73 Window win = calculate_max_window(*input, Steps()); // Flatten does not need paddings
74
75 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
76
77 return std::make_pair(Status{}, win);
78}
79} // namespace
80
81CLFlattenLayerKernel::CLFlattenLayerKernel()
82 : _input(nullptr), _output(nullptr)
83{
84}
85
86void CLFlattenLayerKernel::configure(const ICLTensor *input, ICLTensor *output)
87{
88 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
89 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
90
91 _input = input;
92 _output = output;
93
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010094 // Configure kernel window
95 auto win_config = validate_and_configure_window(input->info(), output->info());
96 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +010097 ICLKernel::configure_internal(win_config.second);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +010098
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +000099 CLBuildOptions build_opts;
100 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
101 build_opts.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(input->info()->dimension(0)));
102 build_opts.add_option("-DSRC_HEIGHT=" + support::cpp11::to_string(input->info()->dimension(1)));
103 build_opts.add_option("-DSRC_DEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
104 build_opts.add_option_if(output->info()->num_dimensions() > 2, "-DDST_DIM1=" + support::cpp11::to_string(output->info()->dimension(1)));
105
106 // Create kernel
107 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("flatten", build_opts.options()));
108
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100109 // Set config_id for enabling LWS tuning
110 _config_id = "flatten";
111 _config_id += "_";
112 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
113 _config_id += "_";
114 _config_id += support::cpp11::to_string(input->info()->dimension(0));
115 _config_id += "_";
116 _config_id += support::cpp11::to_string(input->info()->dimension(1));
117 _config_id += "_";
118 _config_id += support::cpp11::to_string(input->info()->dimension(2));
119 _config_id += "_";
120 _config_id += support::cpp11::to_string(output->info()->dimension(0));
121 _config_id += "_";
122 _config_id += support::cpp11::to_string(output->info()->dimension(1));
123}
124
125Status CLFlattenLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
126{
127 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
128 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
129 return Status{};
130}
131
132void CLFlattenLayerKernel::run(const Window &window, cl::CommandQueue &queue)
133{
134 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
135 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
136
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +0000137 Window collapsed_window = window.collapse(ICLKernel::window(), Window::DimZ);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100138
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +0000139 Window output_window;
140 output_window.use_tensor_dimensions(_output->info()->tensor_shape());
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100141
142 // Run kernel
Gian Marco Iodicea7b54f42018-11-12 15:42:17 +0000143 unsigned int idx = 0;
144 add_4D_tensor_argument(idx, _input, collapsed_window);
145 add_3D_tensor_argument(idx, _output, output_window);
146 enqueue(queue, *this, collapsed_window, lws_hint());
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100147}
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100148} // namespace arm_compute