blob: ef8a1e5294d0ad2e78416a282333b7e295e32543 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham92046462020-03-07 22:15:55 +00002 * Copyright (c) 2016-2020 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/CL/CLPyramid.h"
25
26#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/PyramidInfo.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/TensorShape.h"
30
31#include <array>
32#include <cmath>
33
34using namespace arm_compute;
35
36CLPyramid::CLPyramid()
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010037 : _info(), _pyramid()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038{
39}
40
41void CLPyramid::init(const PyramidInfo &info)
42{
43 internal_init(info, false);
44}
45
46void CLPyramid::init_auto_padding(const PyramidInfo &info)
47{
48 internal_init(info, true);
49}
50
51void CLPyramid::internal_init(const PyramidInfo &info, bool auto_padding)
52{
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010053 _info = info;
54 _pyramid.resize(_info.num_levels());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055
56 size_t w = _info.width();
57 size_t h = _info.height();
58 size_t ref_w = w;
59 size_t ref_h = h;
60 const bool is_orb_scale = (SCALE_PYRAMID_ORB == _info.scale());
61 TensorShape tensor_shape = _info.tensor_shape();
62
63 // Note: Look-up table used by the OpenVX sample implementation
64 const std::array<float, 4> c_orbscale =
65 {
66 {
67 0.5f,
68 SCALE_PYRAMID_ORB,
69 SCALE_PYRAMID_ORB * SCALE_PYRAMID_ORB,
70 SCALE_PYRAMID_ORB *SCALE_PYRAMID_ORB * SCALE_PYRAMID_ORB
71 }
72 };
73
74 for(size_t i = 0; i < _info.num_levels(); ++i)
75 {
76 TensorInfo tensor_info(tensor_shape, _info.format());
77
78 if(auto_padding)
79 {
80 tensor_info.auto_padding();
81 }
82
83 _pyramid[i].allocator()->init(tensor_info);
84
85 if(is_orb_scale)
86 {
87 const float orb_scale = c_orbscale[(i + 1) % 4];
88 w = std::ceil(ref_w * orb_scale);
89 h = std::ceil(ref_h * orb_scale);
90
91 if(0 == ((i + 1) % 4))
92 {
93 ref_w = w;
94 ref_h = h;
95 }
96 }
97 else
98 {
99 w = (w + 1) * _info.scale();
100 h = (h + 1) * _info.scale();
101 }
102
103 // Update tensor_shape
104 tensor_shape.set(0, w);
105 tensor_shape.set(1, h);
106 }
107}
108
109void CLPyramid::allocate()
110{
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111 for(size_t i = 0; i < _info.num_levels(); ++i)
112 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100113 _pyramid[i].allocator()->allocate();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100114 }
115}
116
117const PyramidInfo *CLPyramid::info() const
118{
119 return &_info;
120}
121
122CLTensor *CLPyramid::get_pyramid_level(size_t index) const
123{
124 ARM_COMPUTE_ERROR_ON(index >= _info.num_levels());
125
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100126 return &_pyramid[index];
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100127}