blob: 8d851ce574f6416f797d809914ca506d13fb6540 [file] [log] [blame]
Isabella Gottardi1fab09f2017-07-13 15:55:57 +01001/*
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +00002 * Copyright (c) 2017-2020 ARM Limited.
Isabella Gottardi1fab09f2017-07-13 15:55:57 +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#ifndef ARM_COMPUTE_TEST_SCALE_FIXTURE
25#define ARM_COMPUTE_TEST_SCALE_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010029#include "tests/AssetsLibrary.h"
30#include "tests/Globals.h"
31#include "tests/IAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010032#include "tests/framework/Asserts.h"
33#include "tests/framework/Fixture.h"
Michalis Spyrou46da23f2018-04-10 13:41:30 +010034#include "tests/validation/reference/Permute.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/Scale.h"
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Michalis Spyrou17220e22018-09-12 13:35:38 +010044class ScaleValidationGenericFixture : public framework::Fixture
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010045{
46public:
47 template <typename...>
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +000048 void setup(TensorShape shape, DataType data_type, QuantizationInfo quantization_info, DataLayout data_layout, InterpolationPolicy policy, BorderMode border_mode, SamplingPolicy sampling_policy,
49 bool align_corners)
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010050 {
Gian Marco Iodiceb11e2692017-09-25 11:31:42 +010051 constexpr float max_width = 8192.0f;
52 constexpr float max_height = 6384.0f;
53
Michalis Spyrou17220e22018-09-12 13:35:38 +010054 _shape = shape;
55 _policy = policy;
56 _border_mode = border_mode;
57 _sampling_policy = sampling_policy;
58 _data_type = data_type;
59 _quantization_info = quantization_info;
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +000060 _align_corners = align_corners;
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010061
Gian Marco Iodiceb11e2692017-09-25 11:31:42 +010062 std::mt19937 generator(library->seed());
63 std::uniform_real_distribution<float> distribution_float(0.25, 3);
64 float scale_x = distribution_float(generator);
65 float scale_y = distribution_float(generator);
66
Georgios Pinitas393fa4c2018-05-08 15:54:53 +010067 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
68 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
69
70 scale_x = ((shape[idx_width] * scale_x) > max_width) ? (max_width / shape[idx_width]) : scale_x;
71 scale_y = ((shape[idx_height] * scale_y) > max_height) ? (max_height / shape[idx_height]) : scale_y;
Gian Marco Iodiceb11e2692017-09-25 11:31:42 +010072
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010073 std::uniform_int_distribution<uint8_t> distribution_u8(0, 255);
Georgios Pinitas583137c2017-08-31 18:12:42 +010074 T constant_border_value = static_cast<T>(distribution_u8(generator));
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010075
Michalis Spyrou17220e22018-09-12 13:35:38 +010076 _target = compute_target(shape, data_layout, scale_x, scale_y, policy, border_mode, constant_border_value, sampling_policy, quantization_info);
77 _reference = compute_reference(shape, scale_x, scale_y, policy, border_mode, constant_border_value, sampling_policy, quantization_info);
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010078 }
79
80protected:
81 template <typename U>
82 void fill(U &&tensor)
83 {
Diego Lopez Recas00854292018-02-22 13:08:01 +000084 if(is_data_type_float(_data_type))
85 {
86 library->fill_tensor_uniform(tensor, 0);
87 }
Michalis Spyrou17220e22018-09-12 13:35:38 +010088 else if(is_data_type_quantized(tensor.data_type()))
89 {
90 std::uniform_int_distribution<> distribution(0, 100);
91 library->fill(tensor, distribution, 0);
92 }
Diego Lopez Recas00854292018-02-22 13:08:01 +000093 else
94 {
95 // Restrict range for float to avoid any floating point issues
96 std::uniform_real_distribution<> distribution(-5.0f, 5.0f);
97 library->fill(tensor, distribution, 0);
98 }
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010099 }
100
Georgios Pinitas393fa4c2018-05-08 15:54:53 +0100101 TensorType compute_target(TensorShape shape, DataLayout data_layout, const float scale_x, const float scale_y,
Michalis Spyrou17220e22018-09-12 13:35:38 +0100102 InterpolationPolicy policy, BorderMode border_mode, T constant_border_value, SamplingPolicy sampling_policy,
103 QuantizationInfo quantization_info)
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100104 {
Georgios Pinitas393fa4c2018-05-08 15:54:53 +0100105 // Change shape in case of NHWC.
106 if(data_layout == DataLayout::NHWC)
107 {
108 permute(shape, PermutationVector(2U, 0U, 1U));
109 }
110
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100111 // Create tensors
Michalis Spyrou17220e22018-09-12 13:35:38 +0100112 TensorType src = create_tensor<TensorType>(shape, _data_type, 1, quantization_info, data_layout);
Georgios Pinitas393fa4c2018-05-08 15:54:53 +0100113
114 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
115 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
116
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100117 TensorShape shape_scaled(shape);
Georgios Pinitas393fa4c2018-05-08 15:54:53 +0100118 shape_scaled.set(idx_width, shape[idx_width] * scale_x);
119 shape_scaled.set(idx_height, shape[idx_height] * scale_y);
Michalis Spyrou17220e22018-09-12 13:35:38 +0100120 TensorType dst = create_tensor<TensorType>(shape_scaled, _data_type, 1, quantization_info, data_layout);
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100121
122 // Create and configure function
123 FunctionType scale;
124
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +0000125 scale.configure(&src, &dst, policy, border_mode, constant_border_value, sampling_policy, /* use_padding */ true, _align_corners);
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100126
127 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
128 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
129
130 // Allocate tensors
131 src.allocator()->allocate();
132 dst.allocator()->allocate();
133 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
134 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
135
136 // Fill tensors
137 fill(AccessorType(src));
138
139 // Compute function
140 scale.run();
141
142 return dst;
143 }
144
145 SimpleTensor<T> compute_reference(const TensorShape &shape, const float scale_x, const float scale_y,
Michalis Spyrou17220e22018-09-12 13:35:38 +0100146 InterpolationPolicy policy, BorderMode border_mode, T constant_border_value, SamplingPolicy sampling_policy,
147 QuantizationInfo quantization_info)
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100148 {
149 // Create reference
Michalis Spyrou17220e22018-09-12 13:35:38 +0100150 SimpleTensor<T> src{ shape, _data_type, 1, quantization_info };
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100151
152 // Fill reference
153 fill(src);
154
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +0000155 return reference::scale<T>(src, scale_x, scale_y, policy, border_mode, constant_border_value, sampling_policy, /* ceil_policy_scale */ false, _align_corners);
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100156 }
157
158 TensorType _target{};
159 SimpleTensor<T> _reference{};
160 TensorShape _shape{};
161 InterpolationPolicy _policy{};
162 BorderMode _border_mode{};
Daniil Efremov02bf80d2017-11-22 00:26:51 +0700163 SamplingPolicy _sampling_policy{};
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100164 DataType _data_type{};
Michalis Spyrou17220e22018-09-12 13:35:38 +0100165 QuantizationInfo _quantization_info{};
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +0000166 bool _align_corners{ false };
Michalis Spyrou17220e22018-09-12 13:35:38 +0100167};
168
169template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
170class ScaleValidationQuantizedFixture : public ScaleValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
171{
172public:
173 template <typename...>
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +0000174 void setup(TensorShape shape, DataType data_type, QuantizationInfo quantization_info, DataLayout data_layout, InterpolationPolicy policy, BorderMode border_mode, SamplingPolicy sampling_policy,
175 bool align_corners)
Michalis Spyrou17220e22018-09-12 13:35:38 +0100176 {
177 ScaleValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape,
178 data_type,
179 quantization_info,
180 data_layout,
181 policy,
182 border_mode,
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +0000183 sampling_policy,
184 align_corners);
Michalis Spyrou17220e22018-09-12 13:35:38 +0100185 }
186};
187template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
188class ScaleValidationFixture : public ScaleValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
189{
190public:
191 template <typename...>
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +0000192 void setup(TensorShape shape, DataType data_type, DataLayout data_layout, InterpolationPolicy policy, BorderMode border_mode, SamplingPolicy sampling_policy, bool align_corners)
Michalis Spyrou17220e22018-09-12 13:35:38 +0100193 {
194 ScaleValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape,
195 data_type,
196 QuantizationInfo(),
197 data_layout,
198 policy,
199 border_mode,
Sang-Hoon Parkbb123bd2020-01-03 10:57:30 +0000200 sampling_policy,
201 align_corners);
Michalis Spyrou17220e22018-09-12 13:35:38 +0100202 }
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100203};
204} // namespace validation
205} // namespace test
206} // namespace arm_compute
steniu01f81652d2017-09-11 15:29:12 +0100207#endif /* ARM_COMPUTE_TEST_SCALE_FIXTURE */