blob: f776e334a07de7949b11a8274bd223b6ba86feff [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
93/** Zero padding test */
94bool validate_zero_padding(unsigned int width, unsigned int height, unsigned int channels, unsigned int batches, const ActivationLayerInfo &act_info, DataType data_type)
95{
96 TensorShape shape(width, height, channels, batches);
97
98 // Create tensors
99 CLTensor src = create_tensor<CLTensor>(shape, data_type);
100 CLTensor dst = create_tensor<CLTensor>(shape, data_type);
101
102 src.info()->set_quantization_info(QuantizationInfo(1.f / 256.f, 0));
103 dst.info()->set_quantization_info(QuantizationInfo(1.f / 256.f, 0));
104
105 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
106 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
107
108 // Create and configure function
109 CLActivationLayer act;
110 act.configure(&src, &dst, act_info);
111
112 // Padding can be added along rhs and bias's X dimension
113 return src.info()->padding().empty() && dst.info()->padding().empty();
114}
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100115} // namespace
116
117TEST_SUITE(CL)
118TEST_SUITE(ActivationLayer)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000119// *INDENT-OFF*
120// clang-format off
121DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
122 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching data types
Giorgio Arenad304adb2020-10-02 10:20:11 +0100123 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000124 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
125 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QASYMM8),
Georgios Pinitas4b3fba12019-06-04 17:31:46 +0100126 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QASYMM8), // Invalid quantization info
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000127 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100128 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16),
129 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16),
130 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16), // Invalid activation function for QSYMM16
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000131 }),
132 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16),
133 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000134 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
135 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QASYMM8),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000136 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QASYMM8),
137 TensorInfo(TensorShape(30U, 11U, 2U), 1, DataType::F32),
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100138 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16, QuantizationInfo(1.f / 32768.f, 0)),
139 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16, QuantizationInfo(1.f / 32768.f, 0)),
140 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::QSYMM16, QuantizationInfo(1.f / 32768.f, 0)),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000141 })),
142 framework::dataset::make("ActivationInfo", { ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
143 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000144 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000145 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU),
Michele Di Giorgioa1f7e332018-01-22 17:26:36 +0000146 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000147 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100148 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH),
149 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC),
150 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::SQRT),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000151 })),
Giorgio Arenad304adb2020-10-02 10:20:11 +0100152 framework::dataset::make("Expected", { false, true, true, true, false, false, true, true, false })),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000153 input_info, output_info, act_info, expected)
154{
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000155 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 +0000156}
Giorgio Arenad304adb2020-10-02 10:20:11 +0100157
158/** Validate zero padding tests
159 *
160 * A series of validation tests to check that no padding is added as part of configuration for 4 different scenarios.
161 *
162 * Checks performed in order:
163 * - First dimension multiple of 16
164 * - First dimension non-multiple of 16
165 * - First dimension less than 16 (vec_size for qasymm8) but multiple
166 * - First dimension less than 16 (vec_size for qasymm8) non-multiple
167 * - Tensor with only one element
168 */
169DATA_TEST_CASE(ValidateZeroPadding, framework::DatasetMode::ALL, zip(
170framework::dataset::make("Width", { 32U, 37U, 12U, 13U, 1U }),
171framework::dataset::make("DataType", { DataType::F32, DataType::QASYMM8 })),
172width, data_type)
173{
174 const bool one_elem = (width == 1U);
175 bool status = validate_zero_padding(width, one_elem ? 1U : 17U, one_elem ? 1U : 7U, one_elem ? 1U : 2U, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 1U, 6U), data_type);
176 ARM_COMPUTE_EXPECT(status, framework::LogLevel::ERRORS);
177}
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000178// clang-format on
179// *INDENT-ON*
180
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000181/** [CLActivationLayerFixture snippet] **/
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100182template <typename T>
183using CLActivationLayerFixture = ActivationValidationFixture<CLTensor, CLAccessor, CLActivationLayer, T>;
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000184/** [CLActivationLayerFixture snippet] **/
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100185
186TEST_SUITE(Float)
187TEST_SUITE(FP16)
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000188/** [CLActivationLayer Test snippet] **/
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100189FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerFixture<half>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), ActivationDataset),
190 framework::dataset::make("DataType",
191 DataType::F16)))
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100192{
193 // Validate output
194 validate(CLAccessor(_target), _reference, tolerance(_function, _data_type));
195}
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000196/** [CLActivationLayer Test snippet] **/
Michalis Spyrou80943252019-01-10 17:19:50 +0000197TEST_SUITE_END() // FP16
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100198
199TEST_SUITE(FP32)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100200FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerFixture<float>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), ActivationDataset), framework::dataset::make("DataType",
201 DataType::F32)))
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100202{
203 // Validate output
204 validate(CLAccessor(_target), _reference, tolerance(_function, _data_type));
205}
Michalis Spyrou80943252019-01-10 17:19:50 +0000206TEST_SUITE_END() // FP32
207TEST_SUITE_END() // Float
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100208
209template <typename T>
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000210using CLActivationLayerQuantizedFixture = ActivationValidationQuantizedFixture<CLTensor, CLAccessor, CLActivationLayer, T>;
211
morgolock6b3865a2020-03-04 14:57:46 +0000212const auto QuantizedActivationDataset8 = combine(combine(framework::dataset::make("InPlace", { false }),
213 concat(datasets::ActivationFunctionsQuantized(), framework::dataset::make("ActivationFunction", ActivationLayerInfo::ActivationFunction::HARD_SWISH))),
214 framework::dataset::make("AlphaBeta", { 0.5f, 1.f }));
215
216const auto QuantizedActivationDataset16 = combine(combine(framework::dataset::make("InPlace", { false }),
217 datasets::ActivationFunctionsQuantized()),
218 framework::dataset::make("AlphaBeta", { 0.5f, 1.f }));
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000219
220TEST_SUITE(Quantized)
221TEST_SUITE(QASYMM8)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100222FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), QuantizedActivationDataset8),
223 framework::dataset::make("DataType",
224 DataType::QASYMM8)),
225 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 128.0f) })))
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000226{
227 // Validate output
228 validate(CLAccessor(_target), _reference, tolerance(_function, _data_type));
229}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000230TEST_SUITE_END() // QASYMM8
231TEST_SUITE(QASYMM8_SIGNED)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100232FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerQuantizedFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), QuantizedActivationDataset8),
233 framework::dataset::make("DataType",
234 DataType::QASYMM8_SIGNED)),
235 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 10.0f) })))
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000236{
237 // Validate output
238 validate(CLAccessor(_target), _reference, tolerance(_function, _data_type));
239}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000240TEST_SUITE_END() // QASYMM8_SIGNED
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100241TEST_SUITE(QSYMM16)
Sang-Hoon Parka8a7c1d2020-05-12 22:01:23 +0100242FIXTURE_DATA_TEST_CASE(RunSmall, CLActivationLayerQuantizedFixture<int16_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), QuantizedActivationDataset16),
243 framework::dataset::make("DataType",
244 DataType::QSYMM16)),
245 framework::dataset::make("QuantizationInfo", { QuantizationInfo(1.f / 32768.f, 0) })))
Manuel Bottini30dbeef2019-06-26 16:23:03 +0100246{
247 // Validate output
248 validate(CLAccessor(_target), _reference, tolerance_qsymm16);
249}
250TEST_SUITE_END() // QSYMM16
Michalis Spyrou80943252019-01-10 17:19:50 +0000251TEST_SUITE_END() // Quantized
Michel Iwaniec66cc12f2017-12-07 17:26:40 +0000252
Michalis Spyrou80943252019-01-10 17:19:50 +0000253TEST_SUITE_END() // ActivationLayer
254TEST_SUITE_END() // CL
Moritz Pflanzer572ade72017-07-21 17:36:33 +0100255} // namespace validation
256} // namespace test
257} // namespace arm_compute