blob: 15f37111891c33847314ddd317d48bd07803947f [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 {
Georgios Pinitas3d13af82019-06-04 13:04:16 +010095 if(is_data_type_quantized_asymmetric(src_data_type))
96 {
97 SimpleTensor<uint8_t> src{ shape, src_data_type, 1, _quantization_info };
98 fill(src);
99 return reference::dequantization_layer<T>(src);
100 }
101 else
102 {
103 SimpleTensor<int8_t> src{ shape, src_data_type, 1, _quantization_info };
104 fill(src);
105 return reference::dequantization_layer<T>(src);
106 }
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100107 }
108
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100109protected:
110 QuantizationInfo generate_quantization_info(DataType data_type)
111 {
112 std::uniform_int_distribution<> distribution(1, 127);
113 std::mt19937 gen(library.get()->seed());
114
115 switch(data_type)
116 {
117 case DataType::QSYMM8:
118 return QuantizationInfo(1.f / distribution(gen));
119 case DataType::QASYMM8:
120 return QuantizationInfo(1.f / distribution(gen), distribution(gen));
121 default:
122 ARM_COMPUTE_ERROR("Unsupported data type");
123 }
124 }
125
126protected:
127 TensorType _target{};
128 SimpleTensor<T> _reference{};
129 QuantizationInfo _quantization_info{};
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100130};
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100131} // namespace validation
132} // namespace test
133} // namespace arm_compute
134#endif /* ARM_COMPUTE_TEST_DEQUANTIZATION_LAYER_FIXTURE */