blob: fa9559415772a612971a299ee4856720eeb4e2b5 [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/CL/CLTensor.h"
26#include "arm_compute/runtime/CL/CLTensorAllocator.h"
27#include "arm_compute/runtime/CL/functions/CLActivationLayer.h"
Georgios Pinitas12833d02019-07-25 13:31:10 +010028#include "arm_compute/runtime/RuntimeContext.h"
Moritz Pflanzer572ade72017-07-21 17:36:33 +010029#include "tests/CL/CLAccessor.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{
Manuel Bottini30dbeef2019-06-26 16:23:03 +010047constexpr AbsoluteTolerance<float> tolerance_qsymm16(1.f);
48
Moritz Pflanzer572ade72017-07-21 17:36:33 +010049/** Define tolerance of the activation layer.
50 *
51 * @param[in] activation The activation function used.
52 * @param[in] data_type Data type.
53 *
54 * @return Tolerance depending on the activation function.
55 */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010056AbsoluteTolerance<float> tolerance(ActivationLayerInfo::ActivationFunction activation, DataType data_type)
Moritz Pflanzer572ade72017-07-21 17:36:33 +010057{
Moritz Pflanzerf07f1452017-08-08 17:28:39 +010058 constexpr float epsilon = 1e-6f;
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010059
Moritz Pflanzer572ade72017-07-21 17:36:33 +010060 switch(activation)
61 {
62 case ActivationLayerInfo::ActivationFunction::LINEAR:
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010063 return AbsoluteTolerance<float>(data_type == DataType::F16 ? 0.2f : epsilon);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010064 case ActivationLayerInfo::ActivationFunction::SQUARE:
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010065 return AbsoluteTolerance<float>(data_type == DataType::F16 ? 0.1f : epsilon);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010066 case ActivationLayerInfo::ActivationFunction::LOGISTIC:
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010067 return AbsoluteTolerance<float>(data_type == DataType::F16 ? 0.001f : epsilon);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010068 case ActivationLayerInfo::ActivationFunction::LEAKY_RELU:
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010069 return AbsoluteTolerance<float>(data_type == DataType::F16 ? 0.00001f : epsilon);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010070 case ActivationLayerInfo::ActivationFunction::SOFT_RELU:
Georgios Pinitasfb0fdcd2019-08-22 17:10:04 +010071 case ActivationLayerInfo::ActivationFunction::ELU:
Moritz Pflanzer572ade72017-07-21 17:36:33 +010072 case ActivationLayerInfo::ActivationFunction::SQRT:
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010073 return AbsoluteTolerance<float>(data_type == DataType::F16 ? 0.01f : 0.00001f);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010074 case ActivationLayerInfo::ActivationFunction::TANH:
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010075 return AbsoluteTolerance<float>(data_type == DataType::F16 ? 0.001f : 0.00001f);
morgolock6b3865a2020-03-04 14:57:46 +000076 case ActivationLayerInfo::ActivationFunction::HARD_SWISH:
77 return AbsoluteTolerance<float>(data_type == DataType::F16 ? 0.01f : epsilon);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010078 default:
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010079 return AbsoluteTolerance<float>(epsilon);
Moritz Pflanzer572ade72017-07-21 17:36:33 +010080 }
81}
82
83/** CNN data types */
84const auto CNNDataTypes = framework::dataset::make("DataType",
85{
86 DataType::F16,
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +010087 DataType::F32
Moritz Pflanzer572ade72017-07-21 17:36:33 +010088});
89
90/** Input data sets. */
91const auto ActivationDataset = combine(combine(framework::dataset::make("InPlace", { false, true }), datasets::ActivationFunctions()), framework::dataset::make("AlphaBeta", { 0.5f, 1.f }));
Giorgio Arenad304adb2020-10-02 10:20:11 +010092
Moritz Pflanzer572ade72017-07-21 17:36:33 +010093} // namespace
94
95TEST_SUITE(CL)
96TEST_SUITE(ActivationLayer)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000097// *INDENT-OFF*
98// clang-format off
99DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
100 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching data types
Giorgio Arenad304adb2020-10-02 10:20:11 +0100101 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000102 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
103 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QASYMM8),
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100104 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QASYMM8), // Invalid quantization info
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000105 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100106 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16),
107 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16),
108 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16), // Invalid activation function for QSYMM16
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000109 }),
110 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16),
111 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000112 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
113 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QASYMM8),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000114 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QASYMM8),
115 TensorInfo(TensorShape(30U, 11U, 2U), 1, DataType::F32),
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100116 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16, QuantizationInfo(1.f / 32768.f, 0)),
117 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16, QuantizationInfo(1.f / 32768.f, 0)),
118 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16, QuantizationInfo(1.f / 32768.f, 0)),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000119 })),
120 framework::dataset::make("ActivationInfo", { ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
121 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000122 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000123 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU),
Michele Di Giorgioa1f7e332018-01-22 17:26:36 +0000124 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000125 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100126 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH),
127 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC),
128 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::SQRT),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000129 })),
Giorgio Arenad304adb2020-10-02 10:20:11 +0100130 framework::dataset::make("Expected", { false, true, true, true, false, false, true, true, false })),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000131 input_info, output_info, act_info, expected)
132{
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000133 ARM_COMPUTE_EXPECT(bool(CLActivationLayer::validate(&input_info.clone()->set_is_resizable(false), (output_info.total_size() == 0) ? nullptr : &output_info.clone()->set_is_resizable(false), act_info)) == expected, framework::LogLevel::ERRORS);
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000134}
Giorgio Arenad304adb2020-10-02 10:20:11 +0100135
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000136// clang-format on
137// *INDENT-ON*
138
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000139/** [CLActivationLayerFixture snippet] **/
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100140template <typename T>
141using CLActivationLayerFixture = ActivationValidationFixture<CLTensor, CLAccessor, CLActivationLayer, T>;
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000142/** [CLActivationLayerFixture snippet] **/
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100143
144TEST_SUITE(Float)
145TEST_SUITE(FP16)
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000146/** [CLActivationLayer Test snippet] **/
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100147FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerFixture<half>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), ActivationDataset),
148 framework::dataset::make("DataType",
149 DataType::F16)))
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100150{
151 // Validate output
152 validate(CLAccessor(_target), _reference, tolerance(_function, _data_type));
153}
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000154/** [CLActivationLayer Test snippet] **/
Michalis Spyrou80943252019-01-10 17:19:50 +0000155TEST_SUITE_END() // FP16
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100156
157TEST_SUITE(FP32)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100158FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerFixture<float>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), ActivationDataset), framework::dataset::make("DataType",
159 DataType::F32)))
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100160{
161 // Validate output
162 validate(CLAccessor(_target), _reference, tolerance(_function, _data_type));
163}
Michalis Spyrou80943252019-01-10 17:19:50 +0000164TEST_SUITE_END() // FP32
165TEST_SUITE_END() // Float
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100166
167template <typename T>
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000168using CLActivationLayerQuantizedFixture = ActivationValidationQuantizedFixture<CLTensor, CLAccessor, CLActivationLayer, T>;
169
morgolock6b3865a2020-03-04 14:57:46 +0000170const auto QuantizedActivationDataset8 = combine(combine(framework::dataset::make("InPlace", { false }),
Sang-Hoon Parkadd8e812020-11-25 11:46:03 +0000171 concat(datasets::ActivationFunctionsQuantized(),
172 framework::dataset::make("ActivationFunction",
173{ ActivationLayerInfo::ActivationFunction::HARD_SWISH, ActivationLayerInfo::ActivationFunction::LEAKY_RELU }))),
174framework::dataset::make("AlphaBeta", { 0.5f, 1.f }));
morgolock6b3865a2020-03-04 14:57:46 +0000175
176const auto QuantizedActivationDataset16 = combine(combine(framework::dataset::make("InPlace", { false }),
177 datasets::ActivationFunctionsQuantized()),
178 framework::dataset::make("AlphaBeta", { 0.5f, 1.f }));
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000179
180TEST_SUITE(Quantized)
181TEST_SUITE(QASYMM8)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100182FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), QuantizedActivationDataset8),
183 framework::dataset::make("DataType",
184 DataType::QASYMM8)),
185 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 128.0f) })))
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000186{
187 // Validate output
188 validate(CLAccessor(_target), _reference, tolerance(_function, _data_type));
189}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000190TEST_SUITE_END() // QASYMM8
191TEST_SUITE(QASYMM8_SIGNED)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100192FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerQuantizedFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), QuantizedActivationDataset8),
193 framework::dataset::make("DataType",
194 DataType::QASYMM8_SIGNED)),
195 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 10.0f) })))
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000196{
197 // Validate output
198 validate(CLAccessor(_target), _reference, tolerance(_function, _data_type));
199}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000200TEST_SUITE_END() // QASYMM8_SIGNED
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100201TEST_SUITE(QSYMM16)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100202FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerQuantizedFixture<int16_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), QuantizedActivationDataset16),
203 framework::dataset::make("DataType",
204 DataType::QSYMM16)),
205 framework::dataset::make("QuantizationInfo", { QuantizationInfo(1.f / 32768.f, 0) })))
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100206{
207 // Validate output
208 validate(CLAccessor(_target), _reference, tolerance_qsymm16);
209}
210TEST_SUITE_END() // QSYMM16
Michalis Spyrou80943252019-01-10 17:19:50 +0000211TEST_SUITE_END() // Quantized
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000212
Michalis Spyrou80943252019-01-10 17:19:50 +0000213TEST_SUITE_END() // ActivationLayer
214TEST_SUITE_END() // CL
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100215} // namespace validation
216} // namespace test
217} // namespace arm_compute