blob: 0bf3522cd6a1d00e6d2979308f621c6a16a3fca8 [file] [log] [blame]
Michele Di Giorgio32982d82017-07-07 14:44:43 +01001/*
Giorgio Arenac3b2e072018-08-10 16:27:11 +01002 * Copyright (c) 2017-2018 ARM Limited.
Michele Di Giorgio32982d82017-07-07 14:44:43 +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_DEQUANTIZATION_LAYER_FIXTURE
25#define ARM_COMPUTE_TEST_DEQUANTIZATION_LAYER_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "arm_compute/runtime/Tensor.h"
Michele Di Giorgio32982d82017-07-07 14:44:43 +010030#include "tests/AssetsLibrary.h"
31#include "tests/Globals.h"
32#include "tests/IAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010033#include "tests/framework/Asserts.h"
34#include "tests/framework/Fixture.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/DequantizationLayer.h"
Michele Di Giorgio32982d82017-07-07 14:44:43 +010036
37#include <random>
38
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Giorgio Arenac3b2e072018-08-10 16:27:11 +010046class DequantizationValidationFixture : public framework::Fixture
Michele Di Giorgio32982d82017-07-07 14:44:43 +010047{
48public:
49 template <typename...>
50 void setup(TensorShape shape, DataType data_type)
51 {
Gian Marco Iodice06b184a2017-08-29 16:05:25 +010052 _target = compute_target(shape, data_type);
53 _reference = compute_reference(shape, data_type);
Michele Di Giorgio32982d82017-07-07 14:44:43 +010054 }
55
56protected:
57 template <typename U>
58 void fill(U &&tensor)
59 {
60 library->fill_tensor_uniform(tensor, 0);
61 }
62
Gian Marco Iodice06b184a2017-08-29 16:05:25 +010063 template <typename U>
64 void fill_min_max(U &&tensor)
Michele Di Giorgio32982d82017-07-07 14:44:43 +010065 {
Gian Marco Iodice06b184a2017-08-29 16:05:25 +010066 std::mt19937 gen(library->seed());
67 std::uniform_real_distribution<float> distribution(-1.0f, 1.0f);
68
69 Window window;
70
71 window.set(0, Window::Dimension(0, tensor.shape()[0], 2));
72
73 for(unsigned int d = 1; d < tensor.shape().num_dimensions(); ++d)
74 {
75 window.set(d, Window::Dimension(0, tensor.shape()[d], 1));
76 }
77
78 execute_window_loop(window, [&](const Coordinates & id)
79 {
80 const float n1 = distribution(gen);
81 const float n2 = distribution(gen);
82
83 float min = 0.0f;
84 float max = 0.0f;
85
86 if(n1 < n2)
87 {
88 min = n1;
89 max = n2;
90 }
91 else
92 {
93 min = n2;
94 max = n1;
95 }
96
97 auto out_ptr = reinterpret_cast<float *>(tensor(id));
98 out_ptr[0] = min;
99 out_ptr[1] = max;
100 });
101 }
102
103 TensorType compute_target(const TensorShape &shape, DataType data_type)
104 {
105 TensorShape shape_min_max = shape;
106 shape_min_max.set(Window::DimX, 2);
107
108 // Remove Y and Z dimensions and keep the batches
109 shape_min_max.remove_dimension(1);
110 shape_min_max.remove_dimension(1);
111
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100112 // Create tensors
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100113 TensorType src = create_tensor<TensorType>(shape, data_type);
114 TensorType dst = create_tensor<TensorType>(shape, DataType::F32);
115 TensorType min_max = create_tensor<TensorType>(shape_min_max, DataType::F32);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100116
117 // Create and configure function
118 FunctionType dequantization_layer;
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100119 dequantization_layer.configure(&src, &dst, &min_max);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100120
121 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
122 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100123 ARM_COMPUTE_EXPECT(min_max.info()->is_resizable(), framework::LogLevel::ERRORS);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100124
125 // Allocate tensors
126 src.allocator()->allocate();
127 dst.allocator()->allocate();
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100128 min_max.allocator()->allocate();
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100129
130 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
131 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100132 ARM_COMPUTE_EXPECT(!min_max.info()->is_resizable(), framework::LogLevel::ERRORS);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100133
134 // Fill tensors
135 fill(AccessorType(src));
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100136 fill_min_max(AccessorType(min_max));
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100137
138 // Compute function
139 dequantization_layer.run();
140
141 return dst;
142 }
143
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100144 SimpleTensor<float> compute_reference(const TensorShape &shape, DataType data_type)
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100145 {
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100146 TensorShape shape_min_max = shape;
147 shape_min_max.set(Window::DimX, 2);
148
149 // Remove Y and Z dimensions and keep the batches
150 shape_min_max.remove_dimension(1);
151 shape_min_max.remove_dimension(1);
152
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100153 // Create reference
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100154 SimpleTensor<T> src{ shape, data_type };
155 SimpleTensor<float> min_max{ shape_min_max, data_type };
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100156
157 // Fill reference
158 fill(src);
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100159 fill_min_max(min_max);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100160
Gian Marco Iodice06b184a2017-08-29 16:05:25 +0100161 return reference::dequantization_layer<T>(src, min_max);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100162 }
163
164 TensorType _target{};
165 SimpleTensor<float> _reference{};
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100166};
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100167} // namespace validation
168} // namespace test
169} // namespace arm_compute
170#endif /* ARM_COMPUTE_TEST_DEQUANTIZATION_LAYER_FIXTURE */