blob: 9105638a6ee6dccd4c361798d688a51b2312ab34 [file] [log] [blame]
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +01001/*
Gian Marco Iodicefeaea102020-09-03 13:20:34 +01002 * Copyright (c) 2017-2020 Arm Limited.
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +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 */
Pablo Tello2fdc4092017-11-23 15:50:08 +000024#include "arm_compute/core/NEON/kernels/NEGEMMInterleave4x4Kernel.h"
Pablo Tello088cc7f2017-12-07 15:20:55 +000025#include "arm_compute/core/NEON/kernels/NEGEMMTranspose1xWKernel.h"
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010026#include "arm_compute/core/Types.h"
27#include "arm_compute/runtime/NEON/functions/NEGEMM.h"
28#include "arm_compute/runtime/Tensor.h"
29#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010030#include "tests/NEON/Accessor.h"
Pablo Tello2fdc4092017-11-23 15:50:08 +000031#include "tests/NEON/Helper.h"
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010032#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010033#include "tests/datasets/LargeGEMMDataset.h"
34#include "tests/datasets/SmallGEMMDataset.h"
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +000035#include "tests/datasets/TinyGEMMDataset.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010036#include "tests/framework/Asserts.h"
37#include "tests/framework/Macros.h"
38#include "tests/framework/datasets/Datasets.h"
39#include "tests/validation/Validation.h"
40#include "tests/validation/fixtures/GEMMFixture.h"
Pablo Tello2fdc4092017-11-23 15:50:08 +000041#include "tests/validation/fixtures/GEMMInterleave4x4Fixture.h"
Pablo Tello088cc7f2017-12-07 15:20:55 +000042#include "tests/validation/fixtures/GEMMTranspose1xWFixture.h"
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010043
44namespace arm_compute
45{
46namespace test
47{
48namespace validation
49{
50namespace
51{
Gian Marco Iodicefbf3ecc2018-08-23 17:26:21 +010052constexpr AbsoluteTolerance<float> tolerance_f(0.001f); /**< Tolerance value for comparing reference's output against implementation's output for FP32 data types */
53#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
54RelativeTolerance<half_float::half> rel_tolerance_f16(half(0.2)); /**< Relative tolerance value for comparing reference's output against implementation's output for FP16 data types */
55const AbsoluteTolerance<float> abs_tolerance_f16(0.2f); /**< Absolute tolerance value for comparing reference's output against implementation's output for FP16 data types */
56constexpr float tolerance_num = 0.07f; /**< Tolerance number for FP16 data types */
57#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010058/** CNN data types */
59const auto CNNDataTypes = framework::dataset::make("DataType",
60{
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000061#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010062 DataType::F16,
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000063#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010064 DataType::F32,
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010065});
Pablo Tello2fdc4092017-11-23 15:50:08 +000066
67const auto data_interleave = framework::dataset::make("M", 8, 12) * framework::dataset::make("N", 8, 12);
Pablo Tello088cc7f2017-12-07 15:20:55 +000068const auto data_transpose = framework::dataset::make("M", 8, 14) * framework::dataset::make("N", 7, 14);
69
Gian Marco Iodicefeaea102020-09-03 13:20:34 +010070/** Zero padding test */
71bool validate_zero_padding(unsigned int m_value, unsigned int k_value)
72{
73 const unsigned int M = m_value;
74 const unsigned int K = k_value;
75
76 const TensorShape lhs_shape(K, M);
77 const TensorShape lhs_shape_reshaped(K * 4, std::ceil(M / 4.0f));
78
79 // Create tensors
80 Tensor lhs = create_tensor<Tensor>(lhs_shape, DataType::U32);
81 Tensor dst = create_tensor<Tensor>(lhs_shape_reshaped, DataType::U32);
82
83 ARM_COMPUTE_EXPECT(lhs.info()->is_resizable(), framework::LogLevel::ERRORS);
84 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
85
86 // Validate zero-padding
87 NEGEMMInterleave4x4Kernel lhs_reshape;
88
89 lhs_reshape.configure(&lhs, &dst);
90
91 return lhs.info()->padding().empty();
92}
93
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010094} // namespace
95
96TEST_SUITE(NEON)
97TEST_SUITE(GEMM)
98
Pablo Tello088cc7f2017-12-07 15:20:55 +000099TEST_SUITE(TRANSPOSE_1XW)
100using NEGEMMTranspose1xW = NESynthetizeFunctionWithZeroConstantBorder<NEGEMMTranspose1xWKernel, 4>;
101using NEGEMMTranspose1xWFixture = GEMMTranspose1xWValidationFixture<Tensor, Accessor, NEGEMMTranspose1xW, float>;
102TEST_SUITE(FP32)
103FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMTranspose1xWFixture, framework::DatasetMode::PRECOMMIT, data_transpose * framework::dataset::make("DataType", DataType::F32))
104{
105 // Validate output
106 validate(Accessor(_target), _reference);
107}
108TEST_SUITE_END() // FP32
109
Pablo Tello088cc7f2017-12-07 15:20:55 +0000110TEST_SUITE_END() // TRANSPOSE_1XW
111
Pablo Tello2fdc4092017-11-23 15:50:08 +0000112TEST_SUITE(INTERLEAVE_4X4)
113using NEGEMMInterleave4x4 = NESynthetizeFunctionWithZeroConstantBorder<NEGEMMInterleave4x4Kernel, 4>;
114
Gian Marco Iodicefeaea102020-09-03 13:20:34 +0100115DATA_TEST_CASE(ValidateZeroPadding, framework::DatasetMode::ALL, zip(
116 framework::dataset::make("M", { 1, 23, 63, 101 }),
117 framework::dataset::make("K", { 1, 47, 29, 27 })),
118 m_value, k_value)
119{
120 bool status = validate_zero_padding(m_value, k_value);
121 ARM_COMPUTE_EXPECT(status, framework::LogLevel::ERRORS);
122}
123
124TEST_SUITE(U32)
125using NEGEMMInterleave4x4Fixture = GEMMInterleave4x4ValidationFixture<Tensor, Accessor, NEGEMMInterleave4x4, uint32_t>;
126FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMInterleave4x4Fixture, framework::DatasetMode::PRECOMMIT, data_interleave * framework::dataset::make("DataType", DataType::U32))
Pablo Tello2fdc4092017-11-23 15:50:08 +0000127{
128 // Validate output
129 validate(Accessor(_target), _reference);
130}
Gian Marco Iodicefeaea102020-09-03 13:20:34 +0100131TEST_SUITE_END() // U32
132
133TEST_SUITE(U16)
134using NEGEMMInterleave4x4Fixture = GEMMInterleave4x4ValidationFixture<Tensor, Accessor, NEGEMMInterleave4x4, uint16_t>;
135FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMInterleave4x4Fixture, framework::DatasetMode::PRECOMMIT, data_interleave * framework::dataset::make("DataType", DataType::U16))
136{
137 // Validate output
138 validate(Accessor(_target), _reference);
139}
140TEST_SUITE_END() // U16
141
142TEST_SUITE(U8)
143using NEGEMMInterleave4x4Fixture = GEMMInterleave4x4ValidationFixture<Tensor, Accessor, NEGEMMInterleave4x4, uint8_t>;
144FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMInterleave4x4Fixture, framework::DatasetMode::PRECOMMIT, data_interleave * framework::dataset::make("DataType", DataType::QASYMM8))
145{
146 // Validate output
147 validate(Accessor(_target), _reference);
148}
149TEST_SUITE_END() // U8
Pablo Tello2fdc4092017-11-23 15:50:08 +0000150
Pablo Tello2fdc4092017-11-23 15:50:08 +0000151TEST_SUITE_END() // INTERLEAVE_4X4
152
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +0000153//TODO(COMPMID-415): Validate valid region
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100154
155template <typename T>
156using NEGEMMFixture = GEMMValidationFixture<Tensor, Accessor, NEGEMM, T>;
157
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000158template <typename T>
159using NEGEMMFixtureDisabledC = GEMMValidationFixture<Tensor, Accessor, NEGEMM, T, true>;
160
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100161TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000162#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100163TEST_SUITE(FP16)
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000164FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
165 framework::dataset::make("ReshapeWeights", { true, false })),
166 framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100167{
168 // Validate output
Gian Marco Iodicefbf3ecc2018-08-23 17:26:21 +0100169 validate(Accessor(_target), _reference, rel_tolerance_f16, tolerance_num, abs_tolerance_f16);
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100170}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000171FIXTURE_DATA_TEST_CASE(RunLarge, NEGEMMFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeGEMMDataset(),
172 framework::dataset::make("ReshapeWeights", { true, false })),
173
174 framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100175{
176 // Validate output
Gian Marco Iodicefbf3ecc2018-08-23 17:26:21 +0100177 validate(Accessor(_target), _reference, rel_tolerance_f16, tolerance_num, abs_tolerance_f16);
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100178}
179TEST_SUITE_END()
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000180#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100181
182TEST_SUITE(FP32)
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000183FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
184 framework::dataset::make("ReshapeWeights", { true, false })),
185
186 framework::dataset::make("DataType", DataType::F32)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100187{
188 // Validate output
189 validate(Accessor(_target), _reference, tolerance_f);
190}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000191FIXTURE_DATA_TEST_CASE(RunLarge, NEGEMMFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeGEMMDataset(),
192 framework::dataset::make("ReshapeWeights", { true, false })),
193
194 framework::dataset::make("DataType", DataType::F32)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100195{
196 // Validate output
197 validate(Accessor(_target), _reference, tolerance_f);
198}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000199TEST_SUITE(DisabledC)
200FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixtureDisabledC<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
201 framework::dataset::make("ReshapeWeights", { true, false })),
202
203 framework::dataset::make("DataType", DataType::F32)))
204{
205 // Validate output
206 validate(Accessor(_target), _reference, tolerance_f);
207}
208TEST_SUITE_END()
209
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100210TEST_SUITE_END()
211TEST_SUITE_END()
212
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100213TEST_SUITE_END()
214TEST_SUITE_END()
215} // namespace validation
216} // namespace test
217} // namespace arm_compute