blob: 0667ac73f9d428b0b331e5ccb04729d107ff81aa [file] [log] [blame]
Manuel Bottini6ac59922019-05-15 14:06:02 +01001/*
Viet-Hoa Dofd472f02023-03-15 14:05:06 +00002 * Copyright (c) 2019-2021, 2023 Arm Limited.
Manuel Bottini6ac59922019-05-15 14:06:02 +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/NEElementwiseUnaryLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
30#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"
Jakub Sujakee301b32021-06-04 09:46:08 +010035#include "tests/validation/fixtures/ElementwiseUnaryFixture.h"
Manuel Bottini6ac59922019-05-15 14:06:02 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
45RelativeTolerance<float> tolerance_fp32(0.000001f);
46#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
47RelativeTolerance<float> tolerance_fp16(0.01f);
48#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Ramy Elgammal8b7f42a2023-03-31 16:16:15 +010049#if defined(__aarch64__)
Viet-Hoa Dofd472f02023-03-15 14:05:06 +000050constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(0);
51constexpr AbsoluteTolerance<int8_t> tolerance_qasymm8_signed(0);
Ramy Elgammal8b7f42a2023-03-31 16:16:15 +010052#else // #if !defined(__aarch64__)
53constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1); // There is difference of 1, because quantizing in reference uses round policy "TO_NEAREST_UP", where the armv7a neon kernel uses "TO_ZERO"
54constexpr AbsoluteTolerance<int8_t> tolerance_qasymm8_signed(1);
55#endif // #if !defined(__aarch64__)
Manuel Bottini6ac59922019-05-15 14:06:02 +010056} // namespace
57
58TEST_SUITE(NEON)
59TEST_SUITE(AbsLayer)
Manuel Bottini6ac59922019-05-15 14:06:02 +010060template <typename T>
61using NEAbsLayerFixture = AbsValidationFixture<Tensor, Accessor, NEAbsLayer, T>;
62
Viet-Hoa Dofd472f02023-03-15 14:05:06 +000063template <typename T>
64using NEAbsLayerQuantizedFixture = AbsQuantizedValidationFixture<Tensor, Accessor, NEAbsLayer, T>;
65
Manuel Bottini6ac59922019-05-15 14:06:02 +010066TEST_SUITE(Float)
67#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
68TEST_SUITE(FP16)
69FIXTURE_DATA_TEST_CASE(RunSmall, NEAbsLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(datasets::SmallShapes(), framework::dataset::make("DataType",
70 DataType::F16)))
71{
72 // Validate output
73 validate(Accessor(_target), _reference, tolerance_fp16);
74}
75FIXTURE_DATA_TEST_CASE(RunLarge, NEAbsLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeShapes(), framework::dataset::make("DataType",
76 DataType::F16)))
77{
78 // Validate output
79 validate(Accessor(_target), _reference, tolerance_fp16);
80}
81
82TEST_SUITE_END() // FP16
83#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
84
85TEST_SUITE(FP32)
86FIXTURE_DATA_TEST_CASE(RunSmall, NEAbsLayerFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), framework::dataset::make("DataType",
87 DataType::F32)))
88{
89 // Validate output
90 validate(Accessor(_target), _reference, tolerance_fp32);
91}
92
93FIXTURE_DATA_TEST_CASE(RunLarge, NEAbsLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeShapes(), framework::dataset::make("DataType",
94 DataType::F32)))
95{
96 // Validate output
97 validate(Accessor(_target), _reference, tolerance_fp32);
98}
99TEST_SUITE_END() // FP32
100TEST_SUITE_END() // Float
101
102TEST_SUITE(Integer)
103TEST_SUITE(S32)
104FIXTURE_DATA_TEST_CASE(RunSmall, NEAbsLayerFixture<int32_t>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), framework::dataset::make("DataType",
105 DataType::S32)))
106{
107 // Validate output
108 validate(Accessor(_target), _reference);
109}
110
111FIXTURE_DATA_TEST_CASE(RunLarge, NEAbsLayerFixture<int32_t>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeShapes(), framework::dataset::make("DataType",
112 DataType::S32)))
113{
114 // Validate output
115 validate(Accessor(_target), _reference);
116}
117TEST_SUITE_END() // S32
118TEST_SUITE_END() // Integer
119
Viet-Hoa Dofd472f02023-03-15 14:05:06 +0000120TEST_SUITE(Quantized)
121TEST_SUITE(QASYMM8)
122FIXTURE_DATA_TEST_CASE(RunSmall, NEAbsLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(combine(
123 datasets::SmallShapes(),
124 framework::dataset::make("DataType", DataType::QASYMM8)),
125 framework::dataset::make("InputQInfo", { QuantizationInfo(0.2, -3) })),
126 framework::dataset::make("OutputQInfo", { QuantizationInfo(0.5, 10) })))
127{
128 // Validate output
129 validate(Accessor(_target), _reference, tolerance_qasymm8);
130}
131TEST_SUITE_END() // QASYMM8
132
133TEST_SUITE(QASYMM8_SIGNED)
134FIXTURE_DATA_TEST_CASE(RunSmall, NEAbsLayerQuantizedFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(
135 datasets::SmallShapes(),
136 framework::dataset::make("DataType", DataType::QASYMM8_SIGNED)),
137 framework::dataset::make("InputQInfo", { QuantizationInfo(0.075, 6) })),
138 framework::dataset::make("OutputQInfo", { QuantizationInfo(0.1, -7) })))
139{
140 // Validate output
141 validate(Accessor(_target), _reference, tolerance_qasymm8_signed);
142}
143TEST_SUITE_END() // QASYMM8_SIGNED
Viet-Hoa Dofd472f02023-03-15 14:05:06 +0000144TEST_SUITE_END() // Quantized
Ramy Elgammal8b7f42a2023-03-31 16:16:15 +0100145
Manuel Bottini6ac59922019-05-15 14:06:02 +0100146TEST_SUITE_END() // AbsLayer
Sheri Zhangac6499a2021-02-10 15:32:38 +0000147TEST_SUITE_END() // Neon
Manuel Bottini6ac59922019-05-15 14:06:02 +0100148} // namespace validation
149} // namespace test
150} // namespace arm_compute