blob: dfac72f3a5e5e5e9d722e273b17736b4b70d58f2 [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 */
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +010071template <typename FunctionType>
72bool validate_zero_padding(unsigned int dim0_value, unsigned int dim1_value)
Gian Marco Iodicefeaea102020-09-03 13:20:34 +010073{
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +010074 const TensorShape in_shape(dim0_value, dim1_value);
Gian Marco Iodicefeaea102020-09-03 13:20:34 +010075
76 // Create tensors
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +010077 Tensor in = create_tensor<Tensor>(in_shape, DataType::U32);
78 Tensor dst;
Gian Marco Iodicefeaea102020-09-03 13:20:34 +010079
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +010080 ARM_COMPUTE_EXPECT(in.info()->is_resizable(), framework::LogLevel::ERRORS);
Gian Marco Iodicefeaea102020-09-03 13:20:34 +010081
82 // Validate zero-padding
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +010083 FunctionType func;
Gian Marco Iodicefeaea102020-09-03 13:20:34 +010084
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +010085 func.configure(&in, &dst);
Gian Marco Iodicefeaea102020-09-03 13:20:34 +010086
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +010087 return in.info()->padding().empty();
Gian Marco Iodicefeaea102020-09-03 13:20:34 +010088}
89
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010090} // namespace
91
92TEST_SUITE(NEON)
93TEST_SUITE(GEMM)
94
Pablo Tello088cc7f2017-12-07 15:20:55 +000095TEST_SUITE(TRANSPOSE_1XW)
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +010096using NEGEMMTranspose1xW = NESynthetizeFunctionWithZeroConstantBorder<NEGEMMTranspose1xWKernel, 4>;
97DATA_TEST_CASE(ValidateZeroPadding, framework::DatasetMode::ALL, zip(
98 framework::dataset::make("N", { 1, 23, 63, 101 }),
99 framework::dataset::make("K", { 1, 47, 29, 27 })),
100 n_value, k_value)
101{
102 bool status = validate_zero_padding<NEGEMMTranspose1xWKernel>(n_value, k_value);
103 ARM_COMPUTE_EXPECT(status, framework::LogLevel::ERRORS);
104}
105
106TEST_SUITE(U32)
107using NEGEMMTranspose1xWFixture = GEMMTranspose1xWValidationFixture<Tensor, Accessor, NEGEMMTranspose1xW, uint32_t>;
108FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMTranspose1xWFixture, framework::DatasetMode::PRECOMMIT, data_transpose * framework::dataset::make("DataType", DataType::U32))
Pablo Tello088cc7f2017-12-07 15:20:55 +0000109{
110 // Validate output
111 validate(Accessor(_target), _reference);
112}
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +0100113TEST_SUITE_END() // U32
114
115TEST_SUITE(U16)
116using NEGEMMTranspose1xWFixture = GEMMTranspose1xWValidationFixture<Tensor, Accessor, NEGEMMTranspose1xW, uint16_t>;
117FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMTranspose1xWFixture, framework::DatasetMode::PRECOMMIT, data_transpose * framework::dataset::make("DataType", DataType::U16))
118{
119 // Validate output
120 validate(Accessor(_target), _reference);
121}
122TEST_SUITE_END() // U16
123
124TEST_SUITE(U8)
125using NEGEMMTranspose1xWFixture = GEMMTranspose1xWValidationFixture<Tensor, Accessor, NEGEMMTranspose1xW, uint8_t>;
126FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMTranspose1xWFixture, framework::DatasetMode::PRECOMMIT, data_transpose * framework::dataset::make("DataType", DataType::U8))
127{
128 // Validate output
129 validate(Accessor(_target), _reference);
130}
131TEST_SUITE_END() // U8
Pablo Tello088cc7f2017-12-07 15:20:55 +0000132
Pablo Tello088cc7f2017-12-07 15:20:55 +0000133TEST_SUITE_END() // TRANSPOSE_1XW
134
Pablo Tello2fdc4092017-11-23 15:50:08 +0000135TEST_SUITE(INTERLEAVE_4X4)
136using NEGEMMInterleave4x4 = NESynthetizeFunctionWithZeroConstantBorder<NEGEMMInterleave4x4Kernel, 4>;
137
Gian Marco Iodicefeaea102020-09-03 13:20:34 +0100138DATA_TEST_CASE(ValidateZeroPadding, framework::DatasetMode::ALL, zip(
139 framework::dataset::make("M", { 1, 23, 63, 101 }),
140 framework::dataset::make("K", { 1, 47, 29, 27 })),
141 m_value, k_value)
142{
Gian Marco Iodiceb3182b12020-09-04 08:44:52 +0100143 bool status = validate_zero_padding<NEGEMMInterleave4x4Kernel>(m_value, k_value);
Gian Marco Iodicefeaea102020-09-03 13:20:34 +0100144 ARM_COMPUTE_EXPECT(status, framework::LogLevel::ERRORS);
145}
146
147TEST_SUITE(U32)
148using NEGEMMInterleave4x4Fixture = GEMMInterleave4x4ValidationFixture<Tensor, Accessor, NEGEMMInterleave4x4, uint32_t>;
149FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMInterleave4x4Fixture, framework::DatasetMode::PRECOMMIT, data_interleave * framework::dataset::make("DataType", DataType::U32))
Pablo Tello2fdc4092017-11-23 15:50:08 +0000150{
151 // Validate output
152 validate(Accessor(_target), _reference);
153}
Gian Marco Iodicefeaea102020-09-03 13:20:34 +0100154TEST_SUITE_END() // U32
155
156TEST_SUITE(U16)
157using NEGEMMInterleave4x4Fixture = GEMMInterleave4x4ValidationFixture<Tensor, Accessor, NEGEMMInterleave4x4, uint16_t>;
158FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMInterleave4x4Fixture, framework::DatasetMode::PRECOMMIT, data_interleave * framework::dataset::make("DataType", DataType::U16))
159{
160 // Validate output
161 validate(Accessor(_target), _reference);
162}
163TEST_SUITE_END() // U16
164
165TEST_SUITE(U8)
166using NEGEMMInterleave4x4Fixture = GEMMInterleave4x4ValidationFixture<Tensor, Accessor, NEGEMMInterleave4x4, uint8_t>;
167FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMInterleave4x4Fixture, framework::DatasetMode::PRECOMMIT, data_interleave * framework::dataset::make("DataType", DataType::QASYMM8))
168{
169 // Validate output
170 validate(Accessor(_target), _reference);
171}
172TEST_SUITE_END() // U8
Pablo Tello2fdc4092017-11-23 15:50:08 +0000173
Pablo Tello2fdc4092017-11-23 15:50:08 +0000174TEST_SUITE_END() // INTERLEAVE_4X4
175
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +0000176//TODO(COMPMID-415): Validate valid region
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100177
178template <typename T>
179using NEGEMMFixture = GEMMValidationFixture<Tensor, Accessor, NEGEMM, T>;
180
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000181template <typename T>
182using NEGEMMFixtureDisabledC = GEMMValidationFixture<Tensor, Accessor, NEGEMM, T, true>;
183
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100184TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000185#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100186TEST_SUITE(FP16)
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000187FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
188 framework::dataset::make("ReshapeWeights", { true, false })),
189 framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100190{
191 // Validate output
Gian Marco Iodicefbf3ecc2018-08-23 17:26:21 +0100192 validate(Accessor(_target), _reference, rel_tolerance_f16, tolerance_num, abs_tolerance_f16);
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100193}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000194FIXTURE_DATA_TEST_CASE(RunLarge, NEGEMMFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeGEMMDataset(),
195 framework::dataset::make("ReshapeWeights", { true, false })),
196
197 framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100198{
199 // Validate output
Gian Marco Iodicefbf3ecc2018-08-23 17:26:21 +0100200 validate(Accessor(_target), _reference, rel_tolerance_f16, tolerance_num, abs_tolerance_f16);
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100201}
202TEST_SUITE_END()
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000203#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100204
205TEST_SUITE(FP32)
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000206FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
207 framework::dataset::make("ReshapeWeights", { true, false })),
208
209 framework::dataset::make("DataType", DataType::F32)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100210{
211 // Validate output
212 validate(Accessor(_target), _reference, tolerance_f);
213}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000214FIXTURE_DATA_TEST_CASE(RunLarge, NEGEMMFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeGEMMDataset(),
215 framework::dataset::make("ReshapeWeights", { true, false })),
216
217 framework::dataset::make("DataType", DataType::F32)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100218{
219 // Validate output
220 validate(Accessor(_target), _reference, tolerance_f);
221}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000222TEST_SUITE(DisabledC)
223FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixtureDisabledC<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
224 framework::dataset::make("ReshapeWeights", { true, false })),
225
226 framework::dataset::make("DataType", DataType::F32)))
227{
228 // Validate output
229 validate(Accessor(_target), _reference, tolerance_f);
230}
231TEST_SUITE_END()
232
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100233TEST_SUITE_END()
234TEST_SUITE_END()
235
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100236TEST_SUITE_END()
237TEST_SUITE_END()
238} // namespace validation
239} // namespace test
240} // namespace arm_compute