blob: 33e2850cb114cdecba7a3e29132dbcb41393f7f8 [file] [log] [blame]
Moritz Pflanzer572ade72017-07-21 17:36:33 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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 */
24#include "arm_compute/core/Types.h"
25#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
Georgios Pinitas12833d02019-07-25 13:31:10 +010026#include "arm_compute/runtime/RuntimeContext.h"
Moritz Pflanzer572ade72017-07-21 17:36:33 +010027#include "arm_compute/runtime/Tensor.h"
28#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzer572ade72017-07-21 17:36:33 +010029#include "tests/NEON/Accessor.h"
30#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010031#include "tests/datasets/ActivationFunctionsDataset.h"
32#include "tests/datasets/ShapeDatasets.h"
33#include "tests/framework/Asserts.h"
34#include "tests/framework/Macros.h"
35#include "tests/framework/datasets/Datasets.h"
36#include "tests/validation/Validation.h"
37#include "tests/validation/fixtures/ActivationLayerFixture.h"
Moritz Pflanzer572ade72017-07-21 17:36:33 +010038
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45namespace
46{
Georgios Pinitas3463a8b2018-08-23 13:11:53 +010047/** Define relative tolerance of the activation layer.
Moritz Pflanzer572ade72017-07-21 17:36:33 +010048 *
49 * @param[in] data_type The data type used.
50 * @param[in] activation The activation function used.
51 *
Georgios Pinitas3463a8b2018-08-23 13:11:53 +010052 * @return Relative tolerance depending on the activation function.
Moritz Pflanzer572ade72017-07-21 17:36:33 +010053 */
Georgios Pinitas3463a8b2018-08-23 13:11:53 +010054RelativeTolerance<float> relative_tolerance(DataType data_type, ActivationLayerInfo::ActivationFunction activation)
55{
56 switch(activation)
57 {
58 case ActivationLayerInfo::ActivationFunction::LOGISTIC:
59 case ActivationLayerInfo::ActivationFunction::SOFT_RELU:
Georgios Pinitasfb0fdcd2019-08-22 17:10:04 +010060 case ActivationLayerInfo::ActivationFunction::ELU:
Georgios Pinitas3463a8b2018-08-23 13:11:53 +010061 case ActivationLayerInfo::ActivationFunction::SQRT:
62 case ActivationLayerInfo::ActivationFunction::TANH:
SiCong Lia32e2ae2020-06-08 17:30:51 +010063 case ActivationLayerInfo::ActivationFunction::HARD_SWISH:
Georgios Pinitas3463a8b2018-08-23 13:11:53 +010064 switch(data_type)
65 {
66 case DataType::F16:
67 return RelativeTolerance<float>(0.1f);
68 default:
69 return RelativeTolerance<float>(0.05f);
70 }
Georgios Pinitas3463a8b2018-08-23 13:11:53 +010071 default:
72 return RelativeTolerance<float>(0.f);
73 }
74}
75
76/** Define absolute tolerance of the activation layer.
77 *
78 * @param[in] data_type The data type used.
79 * @param[in] activation The activation function used.
80 *
81 * @return Absolute tolerance depending on the activation function.
82 */
83AbsoluteTolerance<float> absolute_tolerance(DataType data_type, ActivationLayerInfo::ActivationFunction activation)
Moritz Pflanzer572ade72017-07-21 17:36:33 +010084{
85 switch(activation)
86 {
87 case ActivationLayerInfo::ActivationFunction::LOGISTIC:
88 case ActivationLayerInfo::ActivationFunction::SOFT_RELU:
89 case ActivationLayerInfo::ActivationFunction::SQRT:
90 case ActivationLayerInfo::ActivationFunction::TANH:
SiCong Lia32e2ae2020-06-08 17:30:51 +010091 case ActivationLayerInfo::ActivationFunction::HARD_SWISH:
Moritz Pflanzer572ade72017-07-21 17:36:33 +010092 switch(data_type)
93 {
Moritz Pflanzer572ade72017-07-21 17:36:33 +010094 case DataType::F16:
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010095 return AbsoluteTolerance<float>(0.01f);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010096 default:
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010097 return AbsoluteTolerance<float>(0.00001f);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010098 }
Moritz Pflanzer572ade72017-07-21 17:36:33 +010099 default:
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +0100100 return AbsoluteTolerance<float>(0.f);
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100101 }
102}
103
Georgios Pinitas151fa872019-06-06 14:44:44 +0100104/** Tolerance for quantized asymmetric operations */
105#if defined(__aarch64__)
106constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(0);
107#else // defined(__aarch64__)
108constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1);
109#endif // defined(__aarch64__)
110
giuros01c9573f32019-06-20 10:30:17 +0100111constexpr AbsoluteTolerance<int16_t> tolerance_qsymm16(1);
112
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100113/** CNN data types */
114const auto CNNDataTypes = framework::dataset::make("DataType",
115{
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000116#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100117 DataType::F16,
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000118#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100119 DataType::F32,
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100120});
121
morgolockaa85cdf2020-02-28 15:38:28 +0000122const auto NeonActivationFunctionsDataset = concat(datasets::ActivationFunctions(), framework::dataset::make("ActivationFunction", ActivationLayerInfo::ActivationFunction::HARD_SWISH));
morgolock07df3d42020-02-27 11:46:28 +0000123
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100124/** Input data sets. */
morgolock07df3d42020-02-27 11:46:28 +0000125const auto ActivationDataset = combine(combine(framework::dataset::make("InPlace", { false, true }), NeonActivationFunctionsDataset), framework::dataset::make("AlphaBeta", { 0.5f, 1.f }));
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100126} // namespace
127
128TEST_SUITE(NEON)
129TEST_SUITE(ActivationLayer)
130
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +0000131DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), CNNDataTypes), framework::dataset::make("InPlace", { false, true })),
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100132 shape, data_type, in_place)
133{
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100134 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100135 Tensor src = create_tensor<Tensor>(shape, data_type, 1);
136 Tensor dst = create_tensor<Tensor>(shape, data_type, 1);
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100137
138 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
139 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
140
Georgios Pinitas12833d02019-07-25 13:31:10 +0100141 // Create context
142 RuntimeContext ctx;
143
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100144 // Create and configure function
Georgios Pinitas12833d02019-07-25 13:31:10 +0100145 NEActivationLayer act_layer(&ctx);
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100146
147 if(in_place)
148 {
149 act_layer.configure(&src, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::ABS));
150 }
151 else
152 {
153 act_layer.configure(&src, &dst, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::ABS));
154 }
155
156 // Validate valid region
157 const ValidRegion valid_region = shape_to_valid_region(shape);
158 validate(src.info()->valid_region(), valid_region);
159
160 if(!in_place)
161 {
162 validate(dst.info()->valid_region(), valid_region);
163 }
164
165 // Validate padding
Georgios Pinitas5a594532018-12-03 14:30:05 +0000166 validate(src.info()->padding(), PaddingSize());
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100167 if(!in_place)
168 {
Georgios Pinitas5a594532018-12-03 14:30:05 +0000169 validate(dst.info()->padding(), PaddingSize());
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100170 }
171}
172
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000173// *INDENT-OFF*
174// clang-format off
175DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
176 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching data types
177 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
178 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000179 }),
180 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16),
181 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
182 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000183 })),
184 framework::dataset::make("ActivationInfo", { ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
185 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
186 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000187 })),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +0100188 framework::dataset::make("Expected", { false, true, false})),
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000189 input_info, output_info, act_info, expected)
190{
191 bool is_valid = bool(NEActivationLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), act_info));
192 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
193}
194// clang-format on
195// *INDENT-ON*
196
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100197template <typename T>
198using NEActivationLayerFixture = ActivationValidationFixture<Tensor, Accessor, NEActivationLayer, T>;
199
200TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000201#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100202TEST_SUITE(FP16)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100203FIXTURE_DATA_TEST_CASE(RunSmall, NEActivationLayerFixture<half>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), ActivationDataset),
204 framework::dataset::make("DataType",
205 DataType::F16)))
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100206{
207 // Validate output
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100208 validate(Accessor(_target), _reference, relative_tolerance(_data_type, _function), 0.f, absolute_tolerance(_data_type, _function));
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100209}
210TEST_SUITE_END()
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000211#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100212
213TEST_SUITE(FP32)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100214FIXTURE_DATA_TEST_CASE(RunSmall, NEActivationLayerFixture<float>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), ActivationDataset), framework::dataset::make("DataType",
215 DataType::F32)))
Pablo Tello7282d562018-06-14 15:35:49 +0100216
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100217{
218 // Validate output
Georgios Pinitas3463a8b2018-08-23 13:11:53 +0100219 validate(Accessor(_target), _reference, relative_tolerance(_data_type, _function), 0.f, absolute_tolerance(_data_type, _function));
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100220}
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000221TEST_SUITE_END() // FP32
222TEST_SUITE_END() // Float
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100223
224template <typename T>
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000225using NEActivationLayerQuantizedFixture = ActivationValidationQuantizedFixture<Tensor, Accessor, NEActivationLayer, T>;
226
227/** Input data sets. */
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000228const auto QuantizedActivationFunctionsDataset = framework::dataset::make("ActivationFunction", { ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU,
Isabella Gottardi03bb5502019-01-31 17:45:07 +0000229 ActivationLayerInfo::ActivationFunction::RELU,
230 ActivationLayerInfo::ActivationFunction::BOUNDED_RELU,
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100231 ActivationLayerInfo::ActivationFunction::LOGISTIC,
232 ActivationLayerInfo::ActivationFunction::TANH
Michele Di Giorgiodde3ad92018-01-23 16:55:24 +0000233 });
morgolockaa85cdf2020-02-28 15:38:28 +0000234
235const auto QuantizedActivationDataset = combine(combine(framework::dataset::make("InPlace", { false }),
236 concat(QuantizedActivationFunctionsDataset, framework::dataset::make("ActivationFunction", ActivationLayerInfo::ActivationFunction::HARD_SWISH))),
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000237 framework::dataset::make("AlphaBeta", { 0.5f, 1.f }));
238
239TEST_SUITE(Quantized)
240TEST_SUITE(QASYMM8)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100241FIXTURE_DATA_TEST_CASE(RunSmall, NEActivationLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), QuantizedActivationDataset),
242 framework::dataset::make("DataType",
243 DataType::QASYMM8)),
244 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 128.0f) })))
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000245{
246 // Validate output
Georgios Pinitas151fa872019-06-06 14:44:44 +0100247 validate(Accessor(_target), _reference, tolerance_qasymm8);
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000248}
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000249TEST_SUITE_END() // QASYMM8
giuros01c9573f32019-06-20 10:30:17 +0100250
Michalis Spyrou8d4d1b82019-11-28 11:31:23 +0000251TEST_SUITE(QASYMM8_SIGNED)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100252FIXTURE_DATA_TEST_CASE(RunSmall, NEActivationLayerQuantizedFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), QuantizedActivationDataset),
253 framework::dataset::make("DataType",
254 DataType::QASYMM8_SIGNED)),
255 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10.0f) })))
Michalis Spyrou8d4d1b82019-11-28 11:31:23 +0000256{
257 // Validate output
258 validate(Accessor(_target), _reference, tolerance_qasymm8);
259}
260TEST_SUITE_END() // QASYMM8_SIGNED
261
giuros01c9573f32019-06-20 10:30:17 +0100262/** Input data sets. */
263const auto Int16QuantizedActivationFunctionsDataset = framework::dataset::make("ActivationFunction", { ActivationLayerInfo::ActivationFunction::LOGISTIC,
264 ActivationLayerInfo::ActivationFunction::TANH
265 });
266const auto Int16QuantizedActivationDataset = combine(combine(framework::dataset::make("InPlace", { false }), Int16QuantizedActivationFunctionsDataset),
267 framework::dataset::make("AlphaBeta", { 0.5f, 1.f }));
268
269TEST_SUITE(QSYMM16)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100270FIXTURE_DATA_TEST_CASE(RunSmall, NEActivationLayerQuantizedFixture<int16_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), Int16QuantizedActivationDataset),
271 framework::dataset::make("DataType",
272 DataType::QSYMM16)),
273 framework::dataset::make("QuantizationInfo", { QuantizationInfo(1.f / 32768.f, 0.f) })))
giuros01c9573f32019-06-20 10:30:17 +0100274{
275 // Validate output
276 validate(Accessor(_target), _reference, tolerance_qsymm16);
277}
278TEST_SUITE_END() // QSYMM16
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000279TEST_SUITE_END() // Quantized
Michel Iwaniec5dfeae62017-11-29 10:48:23 +0000280
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000281TEST_SUITE_END() // ActivationLayer
282TEST_SUITE_END() // NEON
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100283} // namespace validation
284} // namespace test
285} // namespace arm_compute