blob: ae7adec9f247f22b3639a577f1b0ca2c5313c12f [file] [log] [blame]
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +01001/*
Michalis Spyrou80943252019-01-10 17:19:50 +00002 * Copyright (c) 2017-2019 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);
52
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010053/** CNN data types */
54const auto CNNDataTypes = framework::dataset::make("DataType",
55{
Chunosovf450caa2017-11-08 16:09:35 +070056 DataType::QASYMM8,
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010057 DataType::F16,
58 DataType::F32,
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010059});
60} // namespace
61
62TEST_SUITE(CL)
63TEST_SUITE(SoftmaxLayer)
64
Michalis Spyrou80943252019-01-10 17:19:50 +000065DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(datasets::SoftmaxLayerSmallShapes(), CNNDataTypes), shape, data_type)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010066{
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010067 const QuantizationInfo quantization_info = is_data_type_quantized_asymmetric(data_type) ? QuantizationInfo(1.f / 255.f, 0) : QuantizationInfo();
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010068
69 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010070 CLTensor src = create_tensor<CLTensor>(shape, data_type, 1, quantization_info);
71 CLTensor dst = create_tensor<CLTensor>(shape, data_type, 1, QuantizationInfo(1.f / 256.f, 0));
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010072
73 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
74 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
75
76 // Create and configure function
77 CLSoftmaxLayer smx_layer;
78 smx_layer.configure(&src, &dst);
79
80 // Validate valid region
81 const ValidRegion valid_region = shape_to_valid_region(shape);
82 validate(src.info()->valid_region(), valid_region);
83 validate(dst.info()->valid_region(), valid_region);
84
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010085 // CLLogits1DMaxShiftExpSumKernel configures the paddings only in the 2D case
86 if(shape.num_dimensions() <= 2)
87 {
88 // Get reduction kernel info
89 CLLogits1DMaxShiftExpSumKernel::ParallelReductionInfo reduction_info = CLLogits1DMaxShiftExpSumKernel::is_parallel_reduction(shape.x());
Chunosovd6afedc2017-11-06 22:09:45 +070090
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010091 // Validate src padding for 2D softmax
92 const PaddingSize padding_src = PaddingCalculator(shape.x(), std::get<1>(reduction_info)).required_padding();
93 validate(src.info()->padding(), padding_src);
Chunosovd6afedc2017-11-06 22:09:45 +070094
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010095 // Validate dst padding for 2D softmax
96 const PaddingSize padding_dst = PaddingCalculator(shape.x(), 16).required_padding();
97 validate(dst.info()->padding(), padding_dst);
98 }
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010099}
100
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000101// *INDENT-OFF*
102// clang-format off
103DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +0100104 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U), 1, DataType::F32), // Mismatching data types
105 TensorInfo(TensorShape(27U, 13U), 1, DataType::F32), // Mismatching shapes
106 TensorInfo(TensorShape(27U, 13U), 1, DataType::QASYMM8, // Invalid output quantization info
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000107 QuantizationInfo(1.f/256, 12)),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +0100108 TensorInfo(TensorShape(27U, 13U), 1, DataType::F32), // Window shrink
109 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),// Invalid input dimensionality
110 TensorInfo(TensorShape(32U, 13U), 1, DataType::F32),
111 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8,
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000112 QuantizationInfo(1.f/256, 12)),
113 }),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +0100114 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U), 1, DataType::F16),
115 TensorInfo(TensorShape(27U, 11U), 1, DataType::F32),
116 TensorInfo(TensorShape(27U, 13U), 1, DataType::QASYMM8,
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000117 QuantizationInfo(1.f/256, 12)),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +0100118 TensorInfo(TensorShape(27U, 13U), 1, DataType::F32),
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000119 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +0100120 TensorInfo(TensorShape(32U, 13U), 1, DataType::F32),
121 TensorInfo(TensorShape(32U, 13U), 1, DataType::QASYMM8,
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000122 QuantizationInfo(1.f/256, 0)),
123 })),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +0100124 framework::dataset::make("Expected", { false, false, false, false, false, true, true })),
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000125 input_info, output_info, expected)
126{
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000127 ARM_COMPUTE_EXPECT(bool(CLSoftmaxLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false))) == 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 })),
140 framework::dataset::make("Axis", { 1, 2 })))
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 })),
148 framework::dataset::make("Axis", { 1, 2 })))
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 })),
156 framework::dataset::make("Axis", { 1, 2, 3 })))
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 })),
167 framework::dataset::make("Axis", { 1, 2 })))
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 })),
175 framework::dataset::make("Axis", { 1, 2 })))
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 })),
183 framework::dataset::make("Axis", { 1, 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 }))),
200 framework::dataset::make("Axis", { 1, 2 })))
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 }))),
209 framework::dataset::make("Axis", { 1 })))
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 }))),
218 framework::dataset::make("Axis", { 1, 2, 3 })))
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100219{
220 // Validate output
221 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
222}
223
Chunosovf450caa2017-11-08 16:09:35 +0700224TEST_SUITE_END()
225TEST_SUITE_END()
226
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100227TEST_SUITE_END()
228TEST_SUITE_END()
229} // namespace validation
230} // namespace test
231} // namespace arm_compute