blob: db83bd8e7a14cf5f60a9eda243ee659097a5428e [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Anthony Barbier7068f992017-10-26 15:23:08 +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/GLES_COMPUTE/GCTensor.h"
26#include "arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h"
27#include "arm_compute/runtime/GLES_COMPUTE/functions/GCFullyConnectedLayer.h"
28#include "tests/GLES_COMPUTE/GCAccessor.h"
29#include "tests/GLES_COMPUTE/Helper.h"
30#include "tests/PaddingCalculator.h"
31#include "tests/datasets/FullyConnectedLayerDataset.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
35#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/FullyConnectedLayerFixture.h"
37
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
46/** Tolerance for float operations */
Michele Di Giorgiob71d2242019-11-25 14:22:31 +000047constexpr RelativeTolerance<float> rel_tolerance_f32(0.05f);
48constexpr AbsoluteTolerance<float> abs_tolerance_f32(0.0001f);
Anthony Barbier7068f992017-10-26 15:23:08 +010049RelativeTolerance<half_float::half> tolerance_f16(half(0.2));
50constexpr float tolerance_num = 0.07f; /**< Tolerance number */
51
52/** CNN data types */
53const auto CNNDataTypes = framework::dataset::make("DataType",
54{
55 DataType::F16,
56 DataType::F32,
57});
58
Giorgio Arena1856ff72020-02-07 13:46:45 +000059const auto FullyConnectedParameters = combine(framework::dataset::make("TransposeWeights", { false, true }), framework::dataset::make("ReshapeWeights", { false, true }));
60const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo", ActivationLayerInfo());
Anthony Barbier7068f992017-10-26 15:23:08 +010061} // namespace
62
63TEST_SUITE(GC)
64TEST_SUITE(FullyConnectedLayer)
65
Anthony Barbier7068f992017-10-26 15:23:08 +010066template <typename T>
Giorgio Arenaa855af12018-07-16 17:20:38 +010067using GCFullyConnectedLayerFixture = FullyConnectedLayerValidationFixture<GCTensor, GCAccessor, GCFullyConnectedLayer, T>;
Anthony Barbier7068f992017-10-26 15:23:08 +010068
69TEST_SUITE(Float)
70TEST_SUITE(FP16)
Michalis Spyroucac09dc2020-11-24 00:16:49 +000071FIXTURE_DATA_TEST_CASE(RunSmall, GCFullyConnectedLayerFixture<half_float::half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SmallFullyConnectedLayerDataset(),
Anthony Barbier7068f992017-10-26 15:23:08 +010072 FullyConnectedParameters),
Giorgio Arena1856ff72020-02-07 13:46:45 +000073 framework::dataset::make("DataType", DataType::F16)),
74 ActivationFunctionsDataset))
Anthony Barbier7068f992017-10-26 15:23:08 +010075{
76 // Validate output
77 validate(GCAccessor(_target), _reference, tolerance_f16, tolerance_num);
78}
Giorgio Arena1856ff72020-02-07 13:46:45 +000079FIXTURE_DATA_TEST_CASE(RunLarge, GCFullyConnectedLayerFixture<half_float::half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeFullyConnectedLayerDataset(),
Anthony Barbier7068f992017-10-26 15:23:08 +010080 FullyConnectedParameters),
Giorgio Arena1856ff72020-02-07 13:46:45 +000081 framework::dataset::make("DataType", DataType::F16)),
82 ActivationFunctionsDataset))
Anthony Barbier7068f992017-10-26 15:23:08 +010083{
84 // Validate output
85 validate(GCAccessor(_target), _reference, tolerance_f16, tolerance_num);
86}
87TEST_SUITE_END()
88
89TEST_SUITE(FP32)
Michalis Spyroucac09dc2020-11-24 00:16:49 +000090FIXTURE_DATA_TEST_CASE(RunSmall, GCFullyConnectedLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::SmallFullyConnectedLayerDataset(), FullyConnectedParameters),
91 framework::dataset::make("DataType", DataType::F32)),
92 ActivationFunctionsDataset))
Anthony Barbier7068f992017-10-26 15:23:08 +010093{
94 // Validate output
Michele Di Giorgiob71d2242019-11-25 14:22:31 +000095 validate(GCAccessor(_target), _reference, rel_tolerance_f32);
Anthony Barbier7068f992017-10-26 15:23:08 +010096}
Giorgio Arena1856ff72020-02-07 13:46:45 +000097FIXTURE_DATA_TEST_CASE(RunLarge, GCFullyConnectedLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeFullyConnectedLayerDataset(), FullyConnectedParameters),
98 framework::dataset::make("DataType", DataType::F32)),
99 ActivationFunctionsDataset))
Anthony Barbier7068f992017-10-26 15:23:08 +0100100{
101 // Validate output
Michele Di Giorgiob71d2242019-11-25 14:22:31 +0000102 validate(GCAccessor(_target), _reference, rel_tolerance_f32, 0, abs_tolerance_f32);
Anthony Barbier7068f992017-10-26 15:23:08 +0100103}
104TEST_SUITE_END()
105TEST_SUITE_END()
106
107TEST_SUITE_END()
108TEST_SUITE_END()
109} // namespace validation
110} // namespace test
111} // namespace arm_compute