blob: 2bcdf8a7ff6334e3cf1ce3198ce6210dfbd2ab66 [file] [log] [blame]
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +01001/*
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +00002 * Copyright (c) 2017-2019 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
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010070} // namespace
71
72TEST_SUITE(NEON)
73TEST_SUITE(GEMM)
74
Pablo Tello088cc7f2017-12-07 15:20:55 +000075TEST_SUITE(TRANSPOSE_1XW)
76using NEGEMMTranspose1xW = NESynthetizeFunctionWithZeroConstantBorder<NEGEMMTranspose1xWKernel, 4>;
77using NEGEMMTranspose1xWFixture = GEMMTranspose1xWValidationFixture<Tensor, Accessor, NEGEMMTranspose1xW, float>;
78TEST_SUITE(FP32)
79FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMTranspose1xWFixture, framework::DatasetMode::PRECOMMIT, data_transpose * framework::dataset::make("DataType", DataType::F32))
80{
81 // Validate output
82 validate(Accessor(_target), _reference);
83}
84TEST_SUITE_END() // FP32
85
Pablo Tello088cc7f2017-12-07 15:20:55 +000086TEST_SUITE_END() // TRANSPOSE_1XW
87
Pablo Tello2fdc4092017-11-23 15:50:08 +000088TEST_SUITE(INTERLEAVE_4X4)
89using NEGEMMInterleave4x4 = NESynthetizeFunctionWithZeroConstantBorder<NEGEMMInterleave4x4Kernel, 4>;
90
91TEST_SUITE(FP32)
92using NEGEMMInterleave4x4Fixture = GEMMInterleave4x4ValidationFixture<Tensor, Accessor, NEGEMMInterleave4x4, float>;
93FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMInterleave4x4Fixture, framework::DatasetMode::PRECOMMIT, data_interleave * framework::dataset::make("DataType", DataType::F32))
94{
95 // Validate output
96 validate(Accessor(_target), _reference);
97}
98TEST_SUITE_END() // FP32
99
Pablo Tello2fdc4092017-11-23 15:50:08 +0000100TEST_SUITE_END() // INTERLEAVE_4X4
101
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +0000102//TODO(COMPMID-415): Validate valid region
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100103
104template <typename T>
105using NEGEMMFixture = GEMMValidationFixture<Tensor, Accessor, NEGEMM, T>;
106
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000107template <typename T>
108using NEGEMMFixtureDisabledC = GEMMValidationFixture<Tensor, Accessor, NEGEMM, T, true>;
109
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100110TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000111#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100112TEST_SUITE(FP16)
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000113FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
114 framework::dataset::make("ReshapeWeights", { true, false })),
115 framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100116{
117 // Validate output
Gian Marco Iodicefbf3ecc2018-08-23 17:26:21 +0100118 validate(Accessor(_target), _reference, rel_tolerance_f16, tolerance_num, abs_tolerance_f16);
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100119}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000120FIXTURE_DATA_TEST_CASE(RunLarge, NEGEMMFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeGEMMDataset(),
121 framework::dataset::make("ReshapeWeights", { true, false })),
122
123 framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100124{
125 // Validate output
Gian Marco Iodicefbf3ecc2018-08-23 17:26:21 +0100126 validate(Accessor(_target), _reference, rel_tolerance_f16, tolerance_num, abs_tolerance_f16);
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100127}
128TEST_SUITE_END()
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000129#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100130
131TEST_SUITE(FP32)
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000132FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
133 framework::dataset::make("ReshapeWeights", { true, false })),
134
135 framework::dataset::make("DataType", DataType::F32)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100136{
137 // Validate output
138 validate(Accessor(_target), _reference, tolerance_f);
139}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000140FIXTURE_DATA_TEST_CASE(RunLarge, NEGEMMFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeGEMMDataset(),
141 framework::dataset::make("ReshapeWeights", { true, false })),
142
143 framework::dataset::make("DataType", DataType::F32)))
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100144{
145 // Validate output
146 validate(Accessor(_target), _reference, tolerance_f);
147}
Pablo Tello0e37b5c2018-10-30 11:18:37 +0000148TEST_SUITE(DisabledC)
149FIXTURE_DATA_TEST_CASE(RunSmall, NEGEMMFixtureDisabledC<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(),
150 framework::dataset::make("ReshapeWeights", { true, false })),
151
152 framework::dataset::make("DataType", DataType::F32)))
153{
154 // Validate output
155 validate(Accessor(_target), _reference, tolerance_f);
156}
157TEST_SUITE_END()
158
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100159TEST_SUITE_END()
160TEST_SUITE_END()
161
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100162TEST_SUITE_END()
163TEST_SUITE_END()
164} // namespace validation
165} // namespace test
166} // namespace arm_compute