blob: dbeacfad94511d8f9105e9448bfe01c883ccf64c [file] [log] [blame]
giuros01be1c0172018-12-04 11:36:08 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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/NEON/kernels/NETileKernel.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/Validate.h"
31#include "arm_compute/core/Window.h"
32#include "arm_compute/core/utils/misc/ShapeCalculator.h"
33
34namespace arm_compute
35{
36namespace
37{
38Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const Multiples &multiples)
39{
40 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
41 ARM_COMPUTE_RETURN_ERROR_ON(multiples.size() > 4);
42 ARM_COMPUTE_RETURN_ERROR_ON(multiples.empty());
43 ARM_COMPUTE_RETURN_ERROR_ON(std::any_of(multiples.begin(), multiples.end(), [](uint32_t e)
44 {
45 return e == 0;
46 }));
47
48 // Validate output if initialized
49 if(output->total_size() != 0)
50 {
51 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(misc::shape_calculator::compute_tiled_shape(input->tensor_shape(), multiples), output->tensor_shape());
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
53 }
54
55 return Status{};
56}
57} // namespace
58
59NETileKernel::NETileKernel()
60 : _input(nullptr), _output(nullptr)
61{
62}
63
64void NETileKernel::configure(const ITensor *input, ITensor *output, const Multiples &multiples)
65{
66 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
67
68 // Auto initialize output
69 TensorShape tiled_shape = misc::shape_calculator::compute_tiled_shape(input->info()->tensor_shape(), multiples);
70 auto_init_if_empty(*output->info(), tiled_shape, 1, input->info()->data_type());
71
72 // Validate
73 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), multiples));
74
75 _input = input;
76 _output = output;
77
78 // Configure window without padding
79 Window win = calculate_max_window(*output->info());
80 INEKernel::configure(win);
81}
82
83Status NETileKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const Multiples &multiples)
84{
85 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, multiples));
86 return Status{};
87}
88
89void NETileKernel::run(const Window &window, const ThreadInfo &info)
90{
91 ARM_COMPUTE_UNUSED(info);
92 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
93 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
94
95 Window output_window{ window };
96 output_window.set(Window::DimX, Window::Dimension(output_window.x().start(), output_window.x().end(), _input->info()->dimension(0)));
97 Window out_slice = output_window.first_slice_window_1D();
98
99 const auto src_shape = _input->info()->tensor_shape();
100 do
101 {
102 Iterator output_it(_output, out_slice);
103
104 execute_window_loop(out_slice, [&](const Coordinates & id)
105 {
106 const size_t x = id.x();
107 const size_t y = id.y();
108 const size_t z = id.z();
109 const size_t w = id[3];
110 Coordinates input_coords{ x % src_shape[0], y % src_shape[1], z % src_shape[2], w % src_shape[3] };
111 memcpy(output_it.ptr(), _input->ptr_to_element(input_coords), _input->info()->dimension(0) * _input->info()->element_size());
112 },
113 output_it);
114 }
115 while(output_window.slide_window_slice_1D(out_slice));
116}
117} // namespace arm_compute