blob: 4c7ef81572e0b77e2a79f22f214b6f02c16f435e [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Michele Di Giorgiob71d2242019-11-25 14:22:31 +00002 * Copyright (c) 2017-2019 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
59const auto FullyConnectedParameters = combine(framework::dataset::make("TransposeWeights", { false, true }), framework::dataset::make("ReshapeWeights", { false, true }));
60} // namespace
61
62TEST_SUITE(GC)
63TEST_SUITE(FullyConnectedLayer)
64
65DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(framework::dataset::concat(datasets::SmallFullyConnectedLayerDataset(), datasets::LargeFullyConnectedLayerDataset()),
66 FullyConnectedParameters),
67 CNNDataTypes),
68 src_shape, weights_shape, bias_shape, dst_shape, transpose_weights, reshape_weights, data_type)
69{
Anthony Barbier7068f992017-10-26 15:23:08 +010070 TensorShape ws(weights_shape);
71
72 // Transpose weights if not done in the function
73 if(!reshape_weights || !transpose_weights)
74 {
75 const size_t shape_x = ws.x();
76 ws.set(0, ws.y());
77 ws.set(1, shape_x);
78 }
79
80 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010081 GCTensor src = create_tensor<GCTensor>(src_shape, data_type, 1);
82 GCTensor weights = create_tensor<GCTensor>(ws, data_type, 1);
83 GCTensor bias = create_tensor<GCTensor>(bias_shape, data_type, 1);
84 GCTensor dst = create_tensor<GCTensor>(dst_shape, data_type, 1);
Anthony Barbier7068f992017-10-26 15:23:08 +010085
86 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
87 ARM_COMPUTE_EXPECT(weights.info()->is_resizable(), framework::LogLevel::ERRORS);
88 ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
89 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
90
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010091 // Create Fully Connected layer info
92 FullyConnectedLayerInfo fc_info;
93 fc_info.transpose_weights = transpose_weights;
94 fc_info.are_weights_reshaped = !reshape_weights;
95
Anthony Barbier7068f992017-10-26 15:23:08 +010096 // Create and configure function.
97 GCFullyConnectedLayer fc;
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010098 fc.configure(&src, &weights, &bias, &dst, fc_info);
Anthony Barbier7068f992017-10-26 15:23:08 +010099
100 // Validate valid region
101 const ValidRegion dst_valid_region = shape_to_valid_region(dst_shape);
102 validate(dst.info()->valid_region(), dst_valid_region);
103}
104
105template <typename T>
Giorgio Arenaa855af12018-07-16 17:20:38 +0100106using GCFullyConnectedLayerFixture = FullyConnectedLayerValidationFixture<GCTensor, GCAccessor, GCFullyConnectedLayer, T>;
Anthony Barbier7068f992017-10-26 15:23:08 +0100107
108TEST_SUITE(Float)
109TEST_SUITE(FP16)
110FIXTURE_DATA_TEST_CASE(RunSmall, GCFullyConnectedLayerFixture<half_float::half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallFullyConnectedLayerDataset(),
111 FullyConnectedParameters),
112 framework::dataset::make("DataType", DataType::F16)))
113{
114 // Validate output
115 validate(GCAccessor(_target), _reference, tolerance_f16, tolerance_num);
116}
117FIXTURE_DATA_TEST_CASE(RunLarge, GCFullyConnectedLayerFixture<half_float::half>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeFullyConnectedLayerDataset(),
118 FullyConnectedParameters),
119 framework::dataset::make("DataType", DataType::F16)))
120{
121 // Validate output
122 validate(GCAccessor(_target), _reference, tolerance_f16, tolerance_num);
123}
124TEST_SUITE_END()
125
126TEST_SUITE(FP32)
127FIXTURE_DATA_TEST_CASE(RunSmall, GCFullyConnectedLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallFullyConnectedLayerDataset(), FullyConnectedParameters),
128 framework::dataset::make("DataType", DataType::F32)))
129{
130 // Validate output
Michele Di Giorgiob71d2242019-11-25 14:22:31 +0000131 validate(GCAccessor(_target), _reference, rel_tolerance_f32);
Anthony Barbier7068f992017-10-26 15:23:08 +0100132}
133FIXTURE_DATA_TEST_CASE(RunLarge, GCFullyConnectedLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeFullyConnectedLayerDataset(), FullyConnectedParameters),
134 framework::dataset::make("DataType", DataType::F32)))
135{
136 // Validate output
Michele Di Giorgiob71d2242019-11-25 14:22:31 +0000137 validate(GCAccessor(_target), _reference, rel_tolerance_f32, 0, abs_tolerance_f32);
Anthony Barbier7068f992017-10-26 15:23:08 +0100138}
139TEST_SUITE_END()
140TEST_SUITE_END()
141
142TEST_SUITE_END()
143TEST_SUITE_END()
144} // namespace validation
145} // namespace test
146} // namespace arm_compute