blob: 9ad9689b13304ecb5d5f6982cedef6471404a0dd [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Diego Lopez Recas0021d752017-12-18 14:42:56 +00002 * Copyright (c) 2016-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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/runtime/NEON/functions/NELaplacianReconstruct.h"
25
26#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/IPyramid.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Validate.h"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010031#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032
33#include <cstddef>
34
35using namespace arm_compute;
36
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010037NELaplacianReconstruct::NELaplacianReconstruct() // NOLINT
38 : _tmp_pyr(),
39 _addf(),
40 _scalef(),
41 _depthf()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042{
43}
44
Diego Lopez Recas0021d752017-12-18 14:42:56 +000045void NELaplacianReconstruct::configure(const IPyramid *pyramid, ITensor *input, ITensor *output, BorderMode border_mode, uint8_t constant_border_value)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046{
47 ARM_COMPUTE_ERROR_ON(nullptr == pyramid);
48 ARM_COMPUTE_ERROR_ON(input == output);
49 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S16);
50 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8);
51 ARM_COMPUTE_ERROR_ON(input->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
52 ARM_COMPUTE_ERROR_ON(output->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
53 ARM_COMPUTE_ERROR_ON(output->info()->dimension(0) != pyramid->get_pyramid_level(0)->info()->dimension(0));
54 ARM_COMPUTE_ERROR_ON(output->info()->dimension(1) != pyramid->get_pyramid_level(0)->info()->dimension(1));
55 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->get_pyramid_level(pyramid->info()->num_levels() - 1)->info()->dimension(0));
56 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->get_pyramid_level(pyramid->info()->num_levels() - 1)->info()->dimension(1));
57
58 const size_t num_levels = pyramid->info()->num_levels();
59
60 // Create and initialize the tmp pyramid: I(n-2) = upsample( input + Laplace(n-1) )
61 PyramidInfo pyramid_info;
62 pyramid_info.init(num_levels, 0.5f, output->info()->tensor_shape(), arm_compute::Format::S16);
63
64 _tmp_pyr.init(pyramid_info);
65
66 // Allocate add and scale functions. Level 0 does not need to be scaled.
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010067 _addf = arm_compute::support::cpp14::make_unique<NEArithmeticAddition[]>(num_levels);
68 _scalef = arm_compute::support::cpp14::make_unique<NEScale[]>(num_levels - 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069
70 const size_t last_level = num_levels - 1;
71
72 _addf[last_level].configure(input, pyramid->get_pyramid_level(last_level), _tmp_pyr.get_pyramid_level(last_level), ConvertPolicy::SATURATE);
73
74 // Scale levels n-1 to 1, and add levels n-2 to 0
75 for(size_t l = 0; l < last_level; ++l)
76 {
77 _scalef[l].configure(_tmp_pyr.get_pyramid_level(l + 1), _tmp_pyr.get_pyramid_level(l), arm_compute::InterpolationPolicy::NEAREST_NEIGHBOR, border_mode, constant_border_value);
78 _addf[l].configure(_tmp_pyr.get_pyramid_level(l), pyramid->get_pyramid_level(l), _tmp_pyr.get_pyramid_level(l), ConvertPolicy::SATURATE);
79 }
80
81 // Convert level 0 from S16 to U8
82 _depthf.configure(_tmp_pyr.get_pyramid_level(0), output, ConvertPolicy::SATURATE, 0);
83
84 _tmp_pyr.allocate();
85}
86
87void NELaplacianReconstruct::run()
88{
89 ARM_COMPUTE_ERROR_ON_MSG(_addf == nullptr, "Unconfigured function");
90
91 const size_t last_level = _tmp_pyr.info()->num_levels() - 1;
92
93 _addf[last_level].run();
94
95 // Run l = [last_level - 1, 0]
96 for(size_t l = last_level; l-- > 0;)
97 {
98 _scalef[l].run();
99 _addf[l].run();
100 }
101
102 _depthf.run();
103}