blob: e63808f80ed26af5305a5be2452a5bf56617e2d3 [file] [log] [blame]
Michalis Spyrou33a69902018-02-23 15:01:52 +00001/*
Usama Arif2899e002019-04-16 14:32:25 +01002 * Copyright (c) 2017-2019 ARM Limited.
Michalis Spyrou33a69902018-02-23 15:01:52 +00003 *
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/CPP/kernels/CPPUpsampleKernel.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/core/utils/misc/ShapeCalculator.h"
33
34#include <cstddef>
35#include <cstdint>
36
Manuel Bottinid25af672019-07-10 17:06:12 +010037namespace arm_compute
38{
Michalis Spyrou33a69902018-02-23 15:01:52 +000039CPPUpsampleKernel::CPPUpsampleKernel()
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010040 : _input(nullptr), _output(nullptr), _info()
Michalis Spyrou33a69902018-02-23 15:01:52 +000041{
42}
43
44bool CPPUpsampleKernel::is_parallelisable() const
45{
46 return false;
47}
48
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010049void CPPUpsampleKernel::configure(const ITensor *input, ITensor *output, const PadStrideInfo &info)
Michalis Spyrou33a69902018-02-23 15:01:52 +000050{
51 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
52
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010053 _input = input;
54 _output = output;
55 _info = info;
Michalis Spyrou33a69902018-02-23 15:01:52 +000056
57 // Configure kernel window
58 Window win = calculate_max_window(*input->info(), Steps());
59
60 // The CPPUpsampleKernel doesn't need padding so update_window_and_padding() can be skipped
61 Coordinates coord;
62 coord.set_num_dimensions(output->info()->num_dimensions());
63 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
64
65 ICPPKernel::configure(win);
66}
67
68void CPPUpsampleKernel::run(const Window &window, const ThreadInfo &info)
69{
70 ARM_COMPUTE_UNUSED(info);
71 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
72 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICPPKernel::window(), window);
73
74 // Initialize _scaled_output buffer
Usama Arif2899e002019-04-16 14:32:25 +010075 const int width_scaled = _output->info()->dimension(0);
76 const int height_scaled = _output->info()->dimension(1);
77 const int stride_x = _info.stride().first;
78 const int stride_y = _info.stride().second;
Matthew Jacksonb9070a42019-08-22 16:13:27 +010079 const int start_x = _info.pad_left();
80 const int start_y = _info.pad_top();
81 const int end_x = width_scaled - _info.pad_right();
82 const int end_y = height_scaled - _info.pad_bottom();
Usama Arif2899e002019-04-16 14:32:25 +010083 const size_t element_size = _input->info()->element_size();
Michalis Spyrou33a69902018-02-23 15:01:52 +000084
Manuel Bottinid25af672019-07-10 17:06:12 +010085 //The fill value is normally 0, but for QASYMM8 the '0' corresponds to the offset
86 const uint8_t fill_value = _output->info()->data_type() == DataType::QASYMM8 ? utility::clamp<uint8_t>(_output->info()->quantization_info().uniform().offset) : 0;
87 //Filling a value different than 0 works only for QASYMM8 datatype since we are filling 1byte values in a buffer of uint8_ts
88 std::fill_n(_output->buffer(), _output->info()->total_size(), fill_value);
Michalis Spyrou33a69902018-02-23 15:01:52 +000089
90 // Create window
91 Window window_out(window);
92 window_out.set(Window::DimX, Window::Dimension(start_x, end_x, stride_x));
93 window_out.set(Window::DimY, Window::Dimension(start_y, end_y, stride_y));
94
95 // Create iterators
96 Iterator in(_input, window);
97 Iterator out(_output, window_out);
98
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010099 execute_window_loop(window, [&](const Coordinates &)
Michalis Spyrou33a69902018-02-23 15:01:52 +0000100 {
Usama Arif2899e002019-04-16 14:32:25 +0100101 memcpy(out.ptr(), in.ptr(), element_size);
Michalis Spyrou33a69902018-02-23 15:01:52 +0000102 },
103 in, out);
104}
Manuel Bottinid25af672019-07-10 17:06:12 +0100105} // namespace arm_compute