blob: 76289cab44c2d8451b75ffd3ab390c84494c1060 [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 */
Chunosovd6afedc2017-11-06 22:09:45 +070024#include "arm_compute/core/CL/kernels/CLSoftmaxLayerKernel.h"
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010025#include "arm_compute/core/Types.h"
26#include "arm_compute/runtime/CL/CLTensor.h"
27#include "arm_compute/runtime/CL/CLTensorAllocator.h"
28#include "arm_compute/runtime/CL/functions/CLSoftmaxLayer.h"
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010029#include "tests/CL/CLAccessor.h"
30#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010031#include "tests/datasets/ShapeDatasets.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
35#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/SoftmaxLayerFixture.h"
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010037
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
46/** Tolerance for float operations */
Georgios Pinitas583137c2017-08-31 18:12:42 +010047RelativeTolerance<half> tolerance_f16(half(0.2));
48RelativeTolerance<float> tolerance_f32(0.001f);
steniu013e05e4e2017-08-25 17:18:01 +010049
Chunosovf450caa2017-11-08 16:09:35 +070050/** Tolerance for quantized operations */
51constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1);
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000052constexpr AbsoluteTolerance<int8_t> tolerance_qasymm8_signed(1);
53
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010054/** CNN data types */
55const auto CNNDataTypes = framework::dataset::make("DataType",
56{
Chunosovf450caa2017-11-08 16:09:35 +070057 DataType::QASYMM8,
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010058 DataType::F16,
59 DataType::F32,
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010060});
61} // namespace
62
63TEST_SUITE(CL)
64TEST_SUITE(SoftmaxLayer)
65
Georgios Pinitas30902ed2017-11-14 15:32:57 +000066// *INDENT-OFF*
67// clang-format off
SiCong Lid004a7a2020-05-28 15:26:41 +010068DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +010069 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
Georgios Pinitas30902ed2017-11-14 15:32:57 +000072 QuantizationInfo(1.f/256, 12)),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +010073 TensorInfo(TensorShape(27U, 13U), 1, DataType::F32), // Window shrink
74 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),// Invalid input dimensionality
75 TensorInfo(TensorShape(32U, 13U), 1, DataType::F32),
76 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8,
Georgios Pinitas30902ed2017-11-14 15:32:57 +000077 QuantizationInfo(1.f/256, 12)),
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000078 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8_SIGNED,
SiCong Lid004a7a2020-05-28 15:26:41 +010079 QuantizationInfo(1.f/256, 12)),
80 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8_SIGNED, // Invalid axis high
81 QuantizationInfo(1.f/256, 12)),
82 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8_SIGNED, // Invalid axis low
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000083 QuantizationInfo(1.f/256, 12))
Georgios Pinitas30902ed2017-11-14 15:32:57 +000084 }),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +010085 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U), 1, DataType::F16),
86 TensorInfo(TensorShape(27U, 11U), 1, DataType::F32),
87 TensorInfo(TensorShape(27U, 13U), 1, DataType::QASYMM8,
Georgios Pinitas30902ed2017-11-14 15:32:57 +000088 QuantizationInfo(1.f/256, 12)),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +010089 TensorInfo(TensorShape(27U, 13U), 1, DataType::F32),
Georgios Pinitas30902ed2017-11-14 15:32:57 +000090 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +010091 TensorInfo(TensorShape(32U, 13U), 1, DataType::F32),
92 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8,
Georgios Pinitas30902ed2017-11-14 15:32:57 +000093 QuantizationInfo(1.f/256, 0)),
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000094 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8_SIGNED,
95 QuantizationInfo(1.f/256, -128)),
SiCong Li96209c72020-08-21 12:28:30 +010096 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8_SIGNED,
SiCong Lid004a7a2020-05-28 15:26:41 +010097 QuantizationInfo(1.f/256, -128)),
SiCong Li96209c72020-08-21 12:28:30 +010098 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8_SIGNED,
SiCong Lid004a7a2020-05-28 15:26:41 +010099 QuantizationInfo(1.f/256, -128)),
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000100 })),
SiCong Lid004a7a2020-05-28 15:26:41 +0100101 framework::dataset::make("beta", { 1.0,
102 2.0,
103 1.0,
104 2.0,
105 1.0,
106 2.0,
107 1.0,
108 2.0,
109 1.0,
110 2.0,
111 })),
morgolock9c7fed82020-08-05 12:30:56 +0100112 framework::dataset::make("axis", {
SiCong Lid004a7a2020-05-28 15:26:41 +0100113 0,
114 0,
115 0,
116 0,
SiCong Lid004a7a2020-05-28 15:26:41 +0100117 0,
SiCong Li96209c72020-08-21 12:28:30 +0100118 1,
morgolock9c7fed82020-08-05 12:30:56 +0100119 0,
SiCong Lid004a7a2020-05-28 15:26:41 +0100120 -1,
SiCong Li96209c72020-08-21 12:28:30 +0100121 2,
122 -3,
SiCong Lid004a7a2020-05-28 15:26:41 +0100123 })),
124 framework::dataset::make("Expected", { false, false, false, false, false, true, true, true, false, false })),
morgolock9c7fed82020-08-05 12:30:56 +0100125 input_info, output_info, beta, axis, expected)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000126{
morgolock9c7fed82020-08-05 12:30:56 +0100127 ARM_COMPUTE_EXPECT(bool(CLSoftmaxLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), beta, axis)) == expected, framework::LogLevel::ERRORS);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000128}
129// clang-format on
130// *INDENT-ON*
131
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100132template <typename T>
133using CLSoftmaxLayerFixture = SoftmaxValidationFixture<CLTensor, CLAccessor, CLSoftmaxLayer, T>;
134
135TEST_SUITE(Float)
136TEST_SUITE(FP16)
giuros01efbf6c82018-09-03 09:53:53 +0100137FIXTURE_DATA_TEST_CASE(RunSmall, CLSoftmaxLayerFixture<half>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SoftmaxLayerSmallShapes(),
138 framework::dataset::make("DataType", DataType::F16)),
139 framework::dataset::make("Beta", { 1.0f, 2.0f })),
SiCong Li96209c72020-08-21 12:28:30 +0100140 framework::dataset::make("Axis", { 0, -1 })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100141{
142 // Validate output
143 validate(CLAccessor(_target), _reference, tolerance_f16);
144}
giuros01efbf6c82018-09-03 09:53:53 +0100145FIXTURE_DATA_TEST_CASE(RunLarge, CLSoftmaxLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayerLargeShapes(),
146 framework::dataset::make("DataType", DataType::F16)),
147 framework::dataset::make("Beta", { 1.0f, 2.0f })),
morgolock9c7fed82020-08-05 12:30:56 +0100148 framework::dataset::make("Axis", { 0 })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100149{
150 // Validate output
151 validate(CLAccessor(_target), _reference, tolerance_f16);
152}
giuros01efbf6c82018-09-03 09:53:53 +0100153FIXTURE_DATA_TEST_CASE(Run4D, CLSoftmaxLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayer4DShapes(),
154 framework::dataset::make("DataType", DataType::F16)),
155 framework::dataset::make("Beta", { 1.0f, 2.0f })),
SiCong Li96209c72020-08-21 12:28:30 +0100156 framework::dataset::make("Axis", { 0, -1, 2 })))
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100157{
158 // Validate output
159 validate(CLAccessor(_target), _reference, tolerance_f16);
160}
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100161TEST_SUITE_END()
162
163TEST_SUITE(FP32)
giuros01efbf6c82018-09-03 09:53:53 +0100164FIXTURE_DATA_TEST_CASE(RunSmall, CLSoftmaxLayerFixture<float>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SoftmaxLayerSmallShapes(),
165 framework::dataset::make("DataType", DataType::F32)),
166 framework::dataset::make("Beta", { 1.0f, 2.0f })),
SiCong Li96209c72020-08-21 12:28:30 +0100167 framework::dataset::make("Axis", { 0, 1 })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100168{
169 // Validate output
170 validate(CLAccessor(_target), _reference, tolerance_f32);
171}
giuros01efbf6c82018-09-03 09:53:53 +0100172FIXTURE_DATA_TEST_CASE(RunLarge, CLSoftmaxLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayerLargeShapes(),
173 framework::dataset::make("DataType", DataType::F32)),
174 framework::dataset::make("Beta", { 1.0f, 2.0f })),
morgolock9c7fed82020-08-05 12:30:56 +0100175 framework::dataset::make("Axis", { 0 })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100176{
177 // Validate output
178 validate(CLAccessor(_target), _reference, tolerance_f32);
179}
giuros01efbf6c82018-09-03 09:53:53 +0100180FIXTURE_DATA_TEST_CASE(Run4D, CLSoftmaxLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayer4DShapes(),
181 framework::dataset::make("DataType", DataType::F32)),
182 framework::dataset::make("Beta", { 1.0f, 2.0f })),
SiCong Li96209c72020-08-21 12:28:30 +0100183 framework::dataset::make("Axis", { 0, -2, 3 })))
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100184{
185 // Validate output
186 validate(CLAccessor(_target), _reference, tolerance_f32);
187}
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100188TEST_SUITE_END()
189TEST_SUITE_END()
190
191template <typename T>
Chunosovf450caa2017-11-08 16:09:35 +0700192using CLSoftmaxLayerQuantizedFixture = SoftmaxValidationQuantizedFixture<CLTensor, CLAccessor, CLSoftmaxLayer, T>;
193
194TEST_SUITE(Quantized)
195TEST_SUITE(QASYMM8)
giuros01efbf6c82018-09-03 09:53:53 +0100196FIXTURE_DATA_TEST_CASE(RunSmall, CLSoftmaxLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SoftmaxLayerSmallShapes(),
Pablo Palmiera2b89ca2017-10-05 15:01:34 +0100197 framework::dataset::make("DataType", DataType::QASYMM8)),
giuros01efbf6c82018-09-03 09:53:53 +0100198 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 })))
Chunosovf450caa2017-11-08 16:09:35 +0700201{
202 // Validate output
203 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
204}
giuros01efbf6c82018-09-03 09:53:53 +0100205FIXTURE_DATA_TEST_CASE(RunLarge, CLSoftmaxLayerQuantizedFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayerLargeShapes(),
Pablo Palmiera2b89ca2017-10-05 15:01:34 +0100206 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 })))
Chunosovf450caa2017-11-08 16:09:35 +0700210{
211 // Validate output
212 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
213}
giuros01efbf6c82018-09-03 09:53:53 +0100214FIXTURE_DATA_TEST_CASE(Run4D, CLSoftmaxLayerQuantizedFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SoftmaxLayer4DShapes(),
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100215 framework::dataset::make("DataType", DataType::QASYMM8)),
giuros01efbf6c82018-09-03 09:53:53 +0100216 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
217 framework::dataset::make("Beta", { 1.0f, 2.0f }))),
SiCong Li96209c72020-08-21 12:28:30 +0100218 framework::dataset::make("Axis", { 0, -4, 1 })))
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100219{
220 // Validate output
221 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
222}
223
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000224TEST_SUITE_END() // QASYMM8
Chunosovf450caa2017-11-08 16:09:35 +0700225
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000226TEST_SUITE(QASYMM8_SIGNED)
227
228FIXTURE_DATA_TEST_CASE(RunSmall, CLSoftmaxLayerQuantizedFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SoftmaxLayerSmallShapes(),
229 framework::dataset::make("DataType", DataType::QASYMM8_SIGNED)),
230 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
231 framework::dataset::make("Beta", { 1.0f, 2.f }))),
SiCong Li96209c72020-08-21 12:28:30 +0100232 framework::dataset::make("Axis", { 0, 1 })))
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000233{
234 // Validate output
Sang-Hoon Park77d3d242020-08-10 22:50:17 +0100235 validate(CLAccessor(_target), _reference, tolerance_qasymm8_signed);
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000236}
237
238TEST_SUITE_END() // QASYMM8_SIGNED
239TEST_SUITE_END() // Quantized
240TEST_SUITE_END() // SoftmaxLayer
241TEST_SUITE_END() // CL
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100242} // namespace validation
243} // namespace test
244} // namespace arm_compute