blob: 2a9e30604e1d51c1ac9641e39f3a3af3e8f557f3 [file] [log] [blame]
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +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/NESoftmaxLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010028#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010030#include "tests/datasets/ShapeDatasets.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
35#include "tests/validation/fixtures/SoftmaxLayerFixture.h"
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
45/** Tolerance for float operations */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010046constexpr AbsoluteTolerance<float> tolerance_f32(0.000001f);
Manuel Bottini678d83a2019-01-07 16:05:36 +000047RelativeTolerance<half> tolerance_f16(half(0.2));
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010048
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000049/** Tolerance for quantized operations */
50constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1);
Sang-Hoon Parkc3a74202019-11-22 16:05:46 +000051constexpr AbsoluteTolerance<int8_t> tolerance_qasymm8_signed(1);
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000052
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010053/** CNN data types */
54const auto CNNDataTypes = framework::dataset::make("DataType",
55{
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000056#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010057 DataType::F16,
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000058#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010059 DataType::F32,
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010060});
61} // namespace
62
63TEST_SUITE(NEON)
64TEST_SUITE(SoftmaxLayer)
65
Michalis Spyrouafa5d812017-11-30 14:25:57 +000066// *INDENT-OFF*
67// clang-format off
Manuel Bottini678d83a2019-01-07 16:05:36 +000068DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(
69 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U), 1, DataType::F32), // Mismatching data types
70 TensorInfo(TensorShape(27U, 13U), 1, DataType::F32), // Mismatching shapes
71 TensorInfo(TensorShape(27U, 13U), 1, DataType::QASYMM8, // Invalid output quantization info
72 QuantizationInfo(1.f/256, 12)),
Manuel Bottini678d83a2019-01-07 16:05:36 +000073 TensorInfo(TensorShape(32U, 13U), 1, DataType::F32),
74 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8,
75 QuantizationInfo(1.f/256, 12)),
SiCong Li96209c72020-08-21 12:28:30 +010076 TensorInfo(TensorShape(32U, 13U), 1, DataType::F32),
SiCong Lid004a7a2020-05-28 15:26:41 +010077 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8, //Invalid axis high
78 QuantizationInfo(1.f/256, 12)),
79 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8, //Invalid axis low
Manuel Bottini678d83a2019-01-07 16:05:36 +000080 QuantizationInfo(1.f/256, 12)),
81 }),
82 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U), 1, DataType::F16),
83 TensorInfo(TensorShape(27U, 11U), 1, DataType::F32),
84 TensorInfo(TensorShape(27U, 13U), 1, DataType::QASYMM8,
85 QuantizationInfo(1.f/256, 12)),
Manuel Bottini678d83a2019-01-07 16:05:36 +000086 TensorInfo(TensorShape(32U, 13U), 1, DataType::F32),
87 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8,
88 QuantizationInfo(1.f/256, 0)),
SiCong Li96209c72020-08-21 12:28:30 +010089 TensorInfo(TensorShape(32U, 13U), 1, DataType::F32),
Manuel Bottini678d83a2019-01-07 16:05:36 +000090 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8,
91 QuantizationInfo(1.f/256, 0)),
SiCong Lid004a7a2020-05-28 15:26:41 +010092 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8,
93 QuantizationInfo(1.f/256, 0)),
Manuel Bottini678d83a2019-01-07 16:05:36 +000094 })),
95 framework::dataset::make("beta", { 1.0,
96 2.0,
97 1.0,
98 2.0,
99 1.0,
SiCong Li96209c72020-08-21 12:28:30 +0100100 1.0,
Manuel Bottini678d83a2019-01-07 16:05:36 +0000101 2.0,
102 1.0,
Manuel Bottini678d83a2019-01-07 16:05:36 +0000103 })),
morgolock9c7fed82020-08-05 12:30:56 +0100104 framework::dataset::make("axis", { 0,
SiCong Lid004a7a2020-05-28 15:26:41 +0100105 0,
106 0,
SiCong Li96209c72020-08-21 12:28:30 +0100107 1,
morgolock9c7fed82020-08-05 12:30:56 +0100108 0,
SiCong Li96209c72020-08-21 12:28:30 +0100109 -1,
SiCong Lid004a7a2020-05-28 15:26:41 +0100110 2,
Sheri Zhang1f567af2020-05-05 11:47:36 +0100111 -3,
Manuel Bottini678d83a2019-01-07 16:05:36 +0000112 })),
SiCong Li96209c72020-08-21 12:28:30 +0100113 framework::dataset::make("Expected", { false, false, false, true, true, true, false, false })),
morgolock9c7fed82020-08-05 12:30:56 +0100114 input_info, output_info, beta, axis, expected)
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000115{
morgolock9c7fed82020-08-05 12:30:56 +0100116 ARM_COMPUTE_EXPECT(bool(NESoftmaxLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), beta, axis)) == expected, framework::LogLevel::ERRORS);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000117}
118// clang-format on
119// *INDENT-ON*
120
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100121template <typename T>
122using NESoftmaxLayerFixture = SoftmaxValidationFixture<Tensor, Accessor, NESoftmaxLayer, T>;
123
124TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000125#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100126TEST_SUITE(FP16)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000127FIXTURE_DATA_TEST_CASE(RunSmall, NESoftmaxLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::Small4DShapes(),
Pablo Palmiera2b89ca2017-10-05 15:01:34 +0100128 framework::dataset::make("DataType", DataType::F16)),
giuros01efbf6c82018-09-03 09:53:53 +0100129 framework::dataset::make("Beta", { 1.0f, 2.0f })),
SiCong Li96209c72020-08-21 12:28:30 +0100130 framework::dataset::make("Axis", { 0, 1 })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100131{
132 // Validate output
Manuel Bottini678d83a2019-01-07 16:05:36 +0000133 validate(Accessor(_target), _reference, tolerance_f16);
134}
135FIXTURE_DATA_TEST_CASE(RunSmall4D, NESoftmaxLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::Small4DShapes(),
Manuel Bottini21079dd2019-10-29 17:20:09 +0000136 framework::dataset::make("DataType", DataType::F16)),
Manuel Bottini678d83a2019-01-07 16:05:36 +0000137 framework::dataset::make("Beta", { 1.0f, 2.0f })),
SiCong Li96209c72020-08-21 12:28:30 +0100138 framework::dataset::make("Axis", { 0, 2, -1 })))
Manuel Bottini678d83a2019-01-07 16:05:36 +0000139{
140 // Validate output
Manuel Bottini21079dd2019-10-29 17:20:09 +0000141 validate(Accessor(_target), _reference, tolerance_f16);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100142}
giuros01efbf6c82018-09-03 09:53:53 +0100143FIXTURE_DATA_TEST_CASE(RunLarge, NESoftmaxLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayerLargeShapes(),
144 framework::dataset::make("DataType", DataType::F16)),
145 framework::dataset::make("Beta", { 1.0f, 2.0f })),
morgolock9c7fed82020-08-05 12:30:56 +0100146 framework::dataset::make("Axis", { 0 })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100147{
148 // Validate output
Manuel Bottini678d83a2019-01-07 16:05:36 +0000149 validate(Accessor(_target), _reference, tolerance_f16);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100150}
Manuel Bottini678d83a2019-01-07 16:05:36 +0000151TEST_SUITE_END() //FP16
152#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100153
154TEST_SUITE(FP32)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000155FIXTURE_DATA_TEST_CASE(RunSmall2D, NESoftmaxLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::SoftmaxLayerSmallShapes(),
156 framework::dataset::make("DataType", DataType::F32)),
157 framework::dataset::make("Beta", { 1.0f, 2.0f })),
SiCong Li96209c72020-08-21 12:28:30 +0100158 framework::dataset::make("Axis", { 0, -1 })))
Manuel Bottini678d83a2019-01-07 16:05:36 +0000159{
160 // Validate output
161 validate(Accessor(_target), _reference, tolerance_f32);
162}
163FIXTURE_DATA_TEST_CASE(RunSmall4D, NESoftmaxLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::Small4DShapes(),
164 framework::dataset::make("DataType", DataType::F32)),
165 framework::dataset::make("Beta", { 1.0f, 2.0f })),
SiCong Li96209c72020-08-21 12:28:30 +0100166 framework::dataset::make("Axis", { 0, -2, 3 })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100167{
168 // Validate output
169 validate(Accessor(_target), _reference, tolerance_f32);
170}
giuros01efbf6c82018-09-03 09:53:53 +0100171FIXTURE_DATA_TEST_CASE(RunLarge, NESoftmaxLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayerLargeShapes(),
172 framework::dataset::make("DataType", DataType::F32)),
173 framework::dataset::make("Beta", { 1.0f, 2.0f })),
morgolock9c7fed82020-08-05 12:30:56 +0100174 framework::dataset::make("Axis", { 0 })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100175{
176 // Validate output
177 validate(Accessor(_target), _reference, tolerance_f32);
178}
Manuel Bottini678d83a2019-01-07 16:05:36 +0000179TEST_SUITE_END() //FP32
180TEST_SUITE_END() //Float
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100181
182template <typename T>
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000183using NESoftmaxLayerQuantizedFixture = SoftmaxValidationQuantizedFixture<Tensor, Accessor, NESoftmaxLayer, T>;
184
185TEST_SUITE(Quantized)
186TEST_SUITE(QASYMM8)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000187FIXTURE_DATA_TEST_CASE(RunSmall2D, NESoftmaxLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SoftmaxLayerSmallShapes(),
188 framework::dataset::make("DataType", DataType::QASYMM8)),
189 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
190 framework::dataset::make("Beta", { 1.0f, 2.f }))),
SiCong Li96209c72020-08-21 12:28:30 +0100191 framework::dataset::make("Axis", { 0, -1 })))
Manuel Bottini678d83a2019-01-07 16:05:36 +0000192{
193 // Validate output
194 validate(Accessor(_target), _reference, tolerance_qasymm8);
195}
196FIXTURE_DATA_TEST_CASE(RunSmall4D, NESoftmaxLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::Small4DShapes(),
197 framework::dataset::make("DataType", DataType::QASYMM8)),
198 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
199 framework::dataset::make("Beta", { 1.0f, 2.f }))),
SiCong Li96209c72020-08-21 12:28:30 +0100200 framework::dataset::make("Axis", { 0, 1, -2 })))
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000201{
202 // Validate output
203 validate(Accessor(_target), _reference, tolerance_qasymm8);
204}
giuros01efbf6c82018-09-03 09:53:53 +0100205FIXTURE_DATA_TEST_CASE(RunLarge, NESoftmaxLayerQuantizedFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayerLargeShapes(),
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000206 framework::dataset::make("DataType", DataType::QASYMM8)),
207 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
giuros01efbf6c82018-09-03 09:53:53 +0100208 framework::dataset::make("Beta", { 1.0f, 2.0f }))),
morgolock9c7fed82020-08-05 12:30:56 +0100209 framework::dataset::make("Axis", { 0 })))
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000210{
211 // Validate output
212 validate(Accessor(_target), _reference, tolerance_qasymm8);
213}
Manuel Bottini678d83a2019-01-07 16:05:36 +0000214TEST_SUITE_END() //QASYMM8
Sang-Hoon Parkc3a74202019-11-22 16:05:46 +0000215
216TEST_SUITE(QASYMM8_SIGNED)
217FIXTURE_DATA_TEST_CASE(RunSmall2D, NESoftmaxLayerQuantizedFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SoftmaxLayerSmallShapes(),
218 framework::dataset::make("DataType", DataType::QASYMM8_SIGNED)),
219 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
220 framework::dataset::make("Beta", { 1.0f, 2.f }))),
SiCong Li96209c72020-08-21 12:28:30 +0100221 framework::dataset::make("Axis", { 0, -1 })))
Sang-Hoon Parkc3a74202019-11-22 16:05:46 +0000222{
223 // Validate output
224 validate(Accessor(_target), _reference, tolerance_qasymm8_signed);
225}
226FIXTURE_DATA_TEST_CASE(RunSmall4D, NESoftmaxLayerQuantizedFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::Small4DShapes(),
227 framework::dataset::make("DataType", DataType::QASYMM8_SIGNED)),
228 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
229 framework::dataset::make("Beta", { 1.0f, 2.f }))),
SiCong Li96209c72020-08-21 12:28:30 +0100230 framework::dataset::make("Axis", { 0, 1, -1 })))
Sang-Hoon Parkc3a74202019-11-22 16:05:46 +0000231{
232 // Validate output
233 validate(Accessor(_target), _reference, tolerance_qasymm8_signed);
234}
235TEST_SUITE_END() //QASYMM8_SIGNED
236
Manuel Bottini678d83a2019-01-07 16:05:36 +0000237TEST_SUITE_END() //Quantized
giuros01efbf6c82018-09-03 09:53:53 +0100238
Manuel Bottini678d83a2019-01-07 16:05:36 +0000239TEST_SUITE_END() //SoftmaxLayer
240TEST_SUITE_END() //NEON
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100241} // namespace validation
242} // namespace test
243} // namespace arm_compute