blob: 2c8f05746dca3c176bebc78f933dd5b96f10009a [file] [log] [blame]
Michele Di Giorgio32982d82017-07-07 14:44:43 +01001/*
Georgios Pinitas574775c2019-02-18 20:08:02 +00002 * Copyright (c) 2017-2019 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...>
Georgios Pinitas3d13af82019-06-04 13:04:16 +010050 void setup(TensorShape shape, DataType src_data_type, DataType dst_datatype)
Michele Di Giorgio32982d82017-07-07 14:44:43 +010051 {
Georgios Pinitas3d13af82019-06-04 13:04:16 +010052 _quantization_info = generate_quantization_info(src_data_type);
53 _target = compute_target(shape, src_data_type, dst_datatype);
54 _reference = compute_reference(shape, src_data_type);
Michele Di Giorgio32982d82017-07-07 14:44:43 +010055 }
56
57protected:
58 template <typename U>
59 void fill(U &&tensor)
60 {
61 library->fill_tensor_uniform(tensor, 0);
62 }
63
Georgios Pinitas3d13af82019-06-04 13:04:16 +010064 TensorType compute_target(const TensorShape &shape, DataType src_data_type, DataType dst_datatype)
Michele Di Giorgio32982d82017-07-07 14:44:43 +010065 {
66 // Create tensors
Georgios Pinitas3d13af82019-06-04 13:04:16 +010067 TensorType src = create_tensor<TensorType>(shape, src_data_type, 1, _quantization_info);
68 TensorType dst = create_tensor<TensorType>(shape, dst_datatype);
Michele Di Giorgio32982d82017-07-07 14:44:43 +010069
70 // Create and configure function
71 FunctionType dequantization_layer;
Georgios Pinitas574775c2019-02-18 20:08:02 +000072 dequantization_layer.configure(&src, &dst);
Michele Di Giorgio32982d82017-07-07 14:44:43 +010073
74 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
75 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
76
77 // Allocate tensors
78 src.allocator()->allocate();
79 dst.allocator()->allocate();
80
81 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
82 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
83
84 // Fill tensors
85 fill(AccessorType(src));
86
87 // Compute function
88 dequantization_layer.run();
89
90 return dst;
91 }
92
Georgios Pinitas3d13af82019-06-04 13:04:16 +010093 SimpleTensor<T> compute_reference(const TensorShape &shape, DataType src_data_type)
Michele Di Giorgio32982d82017-07-07 14:44:43 +010094 {
Manuel Bottini10c53f12019-07-17 16:11:53 +010095 if(src_data_type == DataType::QASYMM8)
Georgios Pinitas3d13af82019-06-04 13:04:16 +010096 {
97 SimpleTensor<uint8_t> src{ shape, src_data_type, 1, _quantization_info };
98 fill(src);
99 return reference::dequantization_layer<T>(src);
100 }
Manuel Bottini10c53f12019-07-17 16:11:53 +0100101 else if(src_data_type == DataType::QSYMM8)
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100102 {
103 SimpleTensor<int8_t> src{ shape, src_data_type, 1, _quantization_info };
104 fill(src);
105 return reference::dequantization_layer<T>(src);
106 }
Manuel Bottini10c53f12019-07-17 16:11:53 +0100107 else if(src_data_type == DataType::QSYMM16)
108 {
109 SimpleTensor<int16_t> src{ shape, src_data_type, 1, _quantization_info };
110 fill(src);
111 return reference::dequantization_layer<T>(src);
112 }
113 else
114 {
115 ARM_COMPUTE_ERROR("Unsupported data type");
116 }
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100117 }
118
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100119protected:
120 QuantizationInfo generate_quantization_info(DataType data_type)
121 {
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100122 std::mt19937 gen(library.get()->seed());
Manuel Bottini10c53f12019-07-17 16:11:53 +0100123 std::uniform_int_distribution<> distribution_scale_q8(1, 255);
124 std::uniform_int_distribution<> distribution_offset_q8(1, 127);
125 std::uniform_int_distribution<> distribution_scale_q16(1, 32768);
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100126
127 switch(data_type)
128 {
Manuel Bottini10c53f12019-07-17 16:11:53 +0100129 case DataType::QSYMM16:
130 return QuantizationInfo(1.f / distribution_scale_q16(gen));
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100131 case DataType::QSYMM8:
Manuel Bottini10c53f12019-07-17 16:11:53 +0100132 return QuantizationInfo(1.f / distribution_scale_q8(gen));
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100133 case DataType::QASYMM8:
Manuel Bottini10c53f12019-07-17 16:11:53 +0100134 return QuantizationInfo(1.f / distribution_scale_q8(gen), distribution_offset_q8(gen));
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100135 default:
136 ARM_COMPUTE_ERROR("Unsupported data type");
137 }
138 }
139
140protected:
141 TensorType _target{};
142 SimpleTensor<T> _reference{};
143 QuantizationInfo _quantization_info{};
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100144};
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100145} // namespace validation
146} // namespace test
147} // namespace arm_compute
148#endif /* ARM_COMPUTE_TEST_DEQUANTIZATION_LAYER_FIXTURE */