blob: a24ba8913ec3923c0fc07b2fe5684f9ecd3f686a [file] [log] [blame]
Moritz Pflanzer572ade72017-07-21 17:36:33 +01001/*
Pablo Marquez Tello94690582024-02-15 11:51:30 +00002 * Copyright (c) 2017-2021, 2023-2024 Arm Limited.
Moritz Pflanzer572ade72017-07-21 17:36:33 +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 */
Pablo Marquez Tello94690582024-02-15 11:51:30 +000024#ifndef ACL_TESTS_VALIDATION_FIXTURES_ACTIVATIONLAYERFIXTURE_H
25#define ACL_TESTS_VALIDATION_FIXTURES_ACTIVATIONLAYERFIXTURE_H
Moritz Pflanzer572ade72017-07-21 17:36:33 +010026
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
Moritz Pflanzer572ade72017-07-21 17:36:33 +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"
Pablo Tellodb8485a2019-09-24 11:03:47 +010034#include "tests/framework/ParametersLibrary.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010035#include "tests/validation/Helpers.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000036#include "tests/validation/reference/ActivationLayer.h"
Moritz Pflanzer572ade72017-07-21 17:36:33 +010037
38#include <random>
39
40namespace arm_compute
41{
42namespace test
43{
44namespace validation
45{
46template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Michel Iwaniec66cc12f2017-12-07 17:26:40 +000047class ActivationValidationGenericFixture : public framework::Fixture
Moritz Pflanzer572ade72017-07-21 17:36:33 +010048{
49public:
Pablo Tellodb8485a2019-09-24 11:03:47 +010050
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010051 void setup(TensorShape shape, bool in_place, ActivationLayerInfo::ActivationFunction function, float alpha_beta, DataType data_type, QuantizationInfo quantization_info)
Moritz Pflanzer572ade72017-07-21 17:36:33 +010052 {
Moritz Pflanzer572ade72017-07-21 17:36:33 +010053 ActivationLayerInfo info(function, alpha_beta, alpha_beta);
54
Georgios Pinitas4b3fba12019-06-04 17:31:46 +010055 _in_place = in_place;
Georgios Pinitas4b3fba12019-06-04 17:31:46 +010056 _data_type = data_type;
giuros01c9573f32019-06-20 10:30:17 +010057 _output_quantization_info = calculate_output_quantization_info(_data_type, info, quantization_info);
58 _input_quantization_info = in_place ? _output_quantization_info : quantization_info;
Georgios Pinitas4b3fba12019-06-04 17:31:46 +010059
giuros01c9573f32019-06-20 10:30:17 +010060 _function = function;
Georgios Pinitas4b3fba12019-06-04 17:31:46 +010061 _target = compute_target(shape, info);
62 _reference = compute_reference(shape, info);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010063 }
64
65protected:
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +010066 std::vector<T> get_boundary_values(T min, T max)
67 {
68 // This function will return a vector filled with the following values that can
69 // represent two partitions derived from equivalent partitioning.
70 // * Lower parition: min, min + delta, lower quarter (nominal), center - delta
71 // * Upper partition: center, center + delta, upper quarter (nominal), max - delta, max
72 const auto delta = is_data_type_float(_data_type) ? T(0.1f) : T(1);
73 const auto center_value = (min + max) / 2;
74 const auto lower_quarter = (min + center_value) / 2;
75 const auto upper_quarter = (center_value + max) / 2;
76
77 std::vector<T> boundary_values{};
78
79 // To ensure all the inserted values are within the given range after subtracing/adding delta
80 auto insert_values = [&boundary_values, &min, &max](const std::initializer_list<T> &new_values)
81 {
82 for(auto &v : new_values)
83 {
84 if(v >= min && v <= max)
85 {
86 boundary_values.emplace_back(v);
87 }
88 }
89 };
90
91 insert_values({ min, static_cast<T>(min + delta), static_cast<T>(lower_quarter), static_cast<T>(center_value - delta) }); // lower partition
92 insert_values({ static_cast<T>(center_value), static_cast<T>(center_value + delta), static_cast<T>(upper_quarter), static_cast<T>(max - delta), max }); // upper partition
93
94 return boundary_values;
95 }
96
Moritz Pflanzer572ade72017-07-21 17:36:33 +010097 template <typename U>
98 void fill(U &&tensor)
99 {
100 if(is_data_type_float(_data_type))
101 {
102 float min_bound = 0;
103 float max_bound = 0;
104 std::tie(min_bound, max_bound) = get_activation_layer_test_bounds<T>(_function, _data_type);
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100105 library->fill_static_values(tensor, get_boundary_values(static_cast<T>(min_bound), static_cast<T>(max_bound)));
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000106 }
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100107 else
108 {
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100109 PixelValue min{};
110 PixelValue max{};
111 std::tie(min, max) = get_min_max(tensor.data_type());
112 library->fill_static_values(tensor, get_boundary_values(min.get<T>(), max.get<T>()));
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100113 }
114 }
115
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100116 TensorType compute_target(const TensorShape &shape, ActivationLayerInfo info)
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100117 {
118 // Create tensors
Pablo Marquez Tello94690582024-02-15 11:51:30 +0000119 TensorType src = create_tensor<TensorType>(shape, _data_type, 1, _input_quantization_info, DataLayout::NCHW);
120 TensorType dst = create_tensor<TensorType>(shape, _data_type, 1, _output_quantization_info, DataLayout::NCHW);
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100121
122 // Create and configure function
Pablo Marquez Tello94690582024-02-15 11:51:30 +0000123 FunctionType act_layer;
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100124
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100125 TensorType *dst_ptr = _in_place ? nullptr : &dst;
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100126
127 act_layer.configure(&src, dst_ptr, info);
128
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100129 ARM_COMPUTE_ASSERT(src.info()->is_resizable());
130 ARM_COMPUTE_ASSERT(dst.info()->is_resizable());
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100131
132 // Allocate tensors
133 src.allocator()->allocate();
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100134 ARM_COMPUTE_ASSERT(!src.info()->is_resizable());
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100135
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100136 if(!_in_place)
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100137 {
138 dst.allocator()->allocate();
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100139 ARM_COMPUTE_ASSERT(!dst.info()->is_resizable());
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100140 }
141
142 // Fill tensors
143 fill(AccessorType(src));
144
145 // Compute function
146 act_layer.run();
147
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100148 if(_in_place)
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100149 {
150 return src;
151 }
152 else
153 {
154 return dst;
155 }
156 }
157
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100158 SimpleTensor<T> compute_reference(const TensorShape &shape, ActivationLayerInfo info)
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100159 {
160 // Create reference
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100161 SimpleTensor<T> src{ shape, _data_type, 1, _input_quantization_info };
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100162
163 // Fill reference
164 fill(src);
165
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100166 return reference::activation_layer<T>(src, info, _output_quantization_info);
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100167 }
168
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100169private:
giuros01c9573f32019-06-20 10:30:17 +0100170 QuantizationInfo calculate_output_quantization_info(DataType dt, const ActivationLayerInfo &act_info, const QuantizationInfo &default_qinfo)
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100171 {
Michalis Spyrou8d4d1b82019-11-28 11:31:23 +0000172 auto qasymm8_max = float(std::numeric_limits<uint8_t>::max()) + 1.f;
173 auto qasymm8_signed_max = float(std::numeric_limits<int8_t>::max()) + 1.f;
174 auto qsymm16_max = float(std::numeric_limits<int16_t>::max()) + 1.f;
giuros01c9573f32019-06-20 10:30:17 +0100175
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100176 switch(act_info.activation())
177 {
178 case ActivationLayerInfo::ActivationFunction::TANH:
giuros01c9573f32019-06-20 10:30:17 +0100179 if(dt == DataType::QSYMM16)
180 {
181 return QuantizationInfo(1.f / qsymm16_max, 0);
182 }
183 else if(dt == DataType::QASYMM8)
184 {
185 return QuantizationInfo(1.f / (0.5 * qasymm8_max), int(0.5 * qasymm8_max));
186 }
Michalis Spyrou8d4d1b82019-11-28 11:31:23 +0000187 else if(dt == DataType::QASYMM8_SIGNED)
188 {
189 return QuantizationInfo(1.f / qasymm8_signed_max, 0);
190 }
giuros01c9573f32019-06-20 10:30:17 +0100191 else
192 {
193 return default_qinfo;
194 }
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100195 case ActivationLayerInfo::ActivationFunction::LOGISTIC:
giuros01c9573f32019-06-20 10:30:17 +0100196 if(dt == DataType::QSYMM16)
197 {
198 return QuantizationInfo(1.f / qsymm16_max, 0);
199 }
200 else if(dt == DataType::QASYMM8)
201 {
202 return QuantizationInfo(1.f / qasymm8_max, 0);
203 }
Michalis Spyrou8d4d1b82019-11-28 11:31:23 +0000204 else if(dt == DataType::QASYMM8_SIGNED)
205 {
206 return QuantizationInfo(1.f / (2.f * qasymm8_signed_max), -int(qasymm8_signed_max));
207 }
giuros01c9573f32019-06-20 10:30:17 +0100208 else
209 {
210 return default_qinfo;
211 }
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100212 default:
213 return default_qinfo;
214 }
215 }
216
217protected:
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100218 TensorType _target{};
219 SimpleTensor<T> _reference{};
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100220 bool _in_place{};
221 QuantizationInfo _input_quantization_info{};
222 QuantizationInfo _output_quantization_info{};
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100223 DataType _data_type{};
224 ActivationLayerInfo::ActivationFunction _function{};
225};
226
227template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000228class ActivationValidationFixture : public ActivationValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100229{
230public:
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100231 void setup(TensorShape shape, bool in_place, ActivationLayerInfo::ActivationFunction function, float alpha_beta, DataType data_type)
232 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100233 ActivationValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, in_place, function, alpha_beta, data_type, QuantizationInfo());
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000234 }
235};
236
237template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
238class ActivationValidationQuantizedFixture : public ActivationValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
239{
240public:
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000241 void setup(TensorShape shape, bool in_place, ActivationLayerInfo::ActivationFunction function, float alpha_beta, DataType data_type, QuantizationInfo quantization_info)
242 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100243 ActivationValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, in_place, function, alpha_beta, data_type, quantization_info);
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000244 }
245};
246
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100247} // namespace validation
248} // namespace test
249} // namespace arm_compute
Pablo Marquez Tello94690582024-02-15 11:51:30 +0000250#endif // ACL_TESTS_VALIDATION_FIXTURES_ACTIVATIONLAYERFIXTURE_H