blob: 8c0d46bc416534fbfc7810f909dce7c21b2dc5e0 [file] [log] [blame]
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +01001/*
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +00002 * Copyright (c) 2017-2018 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);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000047#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010048constexpr AbsoluteTolerance<float> tolerance_f16(0.0001f);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000049#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC*/
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010050
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000051/** Tolerance for quantized operations */
52constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1);
53
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010054/** CNN data types */
55const auto CNNDataTypes = framework::dataset::make("DataType",
56{
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000057#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010058 DataType::F16,
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000059#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010060 DataType::F32,
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010061});
62} // namespace
63
64TEST_SUITE(NEON)
65TEST_SUITE(SoftmaxLayer)
66
Pablo Palmiera2b89ca2017-10-05 15:01:34 +010067DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(concat(datasets::SoftmaxLayerSmallShapes(), datasets::SoftmaxLayerLargeShapes()), CNNDataTypes), shape, data_type)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010068{
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010069 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010070 Tensor src = create_tensor<Tensor>(shape, data_type, 1);
71 Tensor dst = create_tensor<Tensor>(shape, data_type, 1);
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 NESoftmaxLayer 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
85 // Validate padding
86 const int step = 16 / data_size_from_type(data_type);
87 const PaddingSize padding = PaddingCalculator(shape.x(), step).required_padding();
88 validate(src.info()->padding(), padding);
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000089 validate(dst.info()->padding(), PaddingSize());
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010090}
91
Michalis Spyrouafa5d812017-11-30 14:25:57 +000092// *INDENT-OFF*
93// clang-format off
94DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +010095 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U), 1, DataType::F32), // Mismatching data types
96 TensorInfo(TensorShape(27U, 13U), 1, DataType::F32), // Mismatching shapes
97 TensorInfo(TensorShape(32U, 16U, 2U), 1, DataType::F32), // Invalid input dimensionality
98 TensorInfo(TensorShape(32U, 16U), 1, DataType::F32),
Michalis Spyrouafa5d812017-11-30 14:25:57 +000099 }),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +0100100 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U), 1, DataType::F16),
101 TensorInfo(TensorShape(27U, 11U), 1, DataType::F32),
102 TensorInfo(TensorShape(27U, 11U), 1, DataType::F32),
103 TensorInfo(TensorShape(32U, 16U), 1, DataType::F32),
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000104 })),
Georgios Pinitas17d6d3c2018-07-02 17:52:40 +0100105 framework::dataset::make("Expected", { false, false, false, true })),
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000106 input_info, output_info, expected)
107{
108 bool is_valid = bool(NESoftmaxLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false)));
109 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
110}
111// clang-format on
112// *INDENT-ON*
113
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100114template <typename T>
115using NESoftmaxLayerFixture = SoftmaxValidationFixture<Tensor, Accessor, NESoftmaxLayer, T>;
116
117TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000118#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100119TEST_SUITE(FP16)
Pablo Palmiera2b89ca2017-10-05 15:01:34 +0100120FIXTURE_DATA_TEST_CASE(RunSmall, NESoftmaxLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SoftmaxLayerSmallShapes(),
121 framework::dataset::make("DataType", DataType::F16)),
122 framework::dataset::make("Beta", { 1.0f, 2.0f })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100123{
124 // Validate output
125 validate(Accessor(_target), _reference, tolerance_f16);
126}
Pablo Palmiera2b89ca2017-10-05 15:01:34 +0100127FIXTURE_DATA_TEST_CASE(RunLarge, NESoftmaxLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::SoftmaxLayerSmallShapes(),
128 framework::dataset::make("DataType", DataType::F16)),
129 framework::dataset::make("Beta", { 1.0f, 2.0f })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100130{
131 // Validate output
132 validate(Accessor(_target), _reference, tolerance_f16);
133}
134TEST_SUITE_END()
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000135#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100136
137TEST_SUITE(FP32)
Pablo Palmiera2b89ca2017-10-05 15:01:34 +0100138FIXTURE_DATA_TEST_CASE(RunSmall, NESoftmaxLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SoftmaxLayerSmallShapes(),
139 framework::dataset::make("DataType", DataType::F32)),
140 framework::dataset::make("Beta", { 1.0f, 2.0f })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100141{
142 // Validate output
143 validate(Accessor(_target), _reference, tolerance_f32);
144}
Pablo Palmiera2b89ca2017-10-05 15:01:34 +0100145FIXTURE_DATA_TEST_CASE(RunLarge, NESoftmaxLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::SoftmaxLayerLargeShapes(),
146 framework::dataset::make("DataType", DataType::F32)),
147 framework::dataset::make("Beta", { 1.0f, 2.0f })))
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100148{
149 // Validate output
150 validate(Accessor(_target), _reference, tolerance_f32);
151}
152TEST_SUITE_END()
153TEST_SUITE_END()
154
155template <typename T>
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000156using NESoftmaxLayerQuantizedFixture = SoftmaxValidationQuantizedFixture<Tensor, Accessor, NESoftmaxLayer, T>;
157
158TEST_SUITE(Quantized)
159TEST_SUITE(QASYMM8)
160FIXTURE_DATA_TEST_CASE(RunSmall, NESoftmaxLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(datasets::SoftmaxLayerSmallShapes(),
161 framework::dataset::make("DataType", DataType::QASYMM8)),
162 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
163 framework::dataset::make("Beta", { 1.0f, 2.0f }))))
164{
165 // Validate output
166 validate(Accessor(_target), _reference, tolerance_qasymm8);
167}
168FIXTURE_DATA_TEST_CASE(RunLarge, NESoftmaxLayerQuantizedFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::SoftmaxLayerLargeShapes(),
169 framework::dataset::make("DataType", DataType::QASYMM8)),
170 combine(framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, -10) }),
171 framework::dataset::make("Beta", { 1.0f, 2.0f }))))
172{
173 // Validate output
174 validate(Accessor(_target), _reference, tolerance_qasymm8);
175}
176TEST_SUITE_END()
177TEST_SUITE_END()
178
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100179TEST_SUITE_END()
180TEST_SUITE_END()
181} // namespace validation
182} // namespace test
183} // namespace arm_compute