blob: b00f27445c8bc4952ad57bd55f4f00289b04d57f [file] [log] [blame]
Sanghoon Leef47bfb92018-01-23 15:16:47 +00001/*
2 * Copyright (c) 2017-2018 ARM Limited.
3 *
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/NEON/functions/NELocallyConnectedLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
30#include "tests/datasets/LocallyConnectedDataset.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
35#include "tests/validation/fixtures/LocallyConnectedFixture.h"
36
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
45constexpr RelativeTolerance<float> tolerance_f32(0.0001f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
46} // namespace
47
48TEST_SUITE(NEON)
49TEST_SUITE(LocallyConnected)
50
Alex Gilday27c08ab2018-02-22 11:36:16 +000051// *INDENT-OFF*
52// clang-format off
53DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(
54 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32, 0), // Mismatching data type input/weights
55 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32, 0), // Mismatching data type input/bias
56 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32, 0), // Mismatching data type input/output
57 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32, 0), // Mismatching shape input/weights
58 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32, 0), // Mismatching shape input/bias
59 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32, 0), // Mismatching shape input/output
60 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32, 0), // Asymmetric padding
61 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32, 0)
62 }),
63 framework::dataset::make("WeightsInfo",{ TensorInfo(TensorShape(3U, 3U, 5U, 21U, 275U), 1, DataType::F16, 0),
64 TensorInfo(TensorShape(3U, 3U, 5U, 21U, 275U), 1, DataType::F32, 0),
65 TensorInfo(TensorShape(3U, 3U, 5U, 21U, 275U), 1, DataType::F32, 0),
66 TensorInfo(TensorShape(3U, 3U, 5U, 21U, 274U), 1, DataType::F32, 0),
67 TensorInfo(TensorShape(3U, 3U, 5U, 21U, 275U), 1, DataType::F32, 0),
68 TensorInfo(TensorShape(3U, 3U, 5U, 21U, 275U), 1, DataType::F32, 0),
69 TensorInfo(TensorShape(3U, 3U, 5U, 21U, 275U), 1, DataType::F32, 0),
70 TensorInfo(TensorShape(3U, 3U, 5U, 21U, 275U), 1, DataType::F32, 0)
71 })),
72 framework::dataset::make("BiasInfo", { TensorInfo(TensorShape(21U, 275U), 1, DataType::F32, 0),
73 TensorInfo(TensorShape(21U, 275U), 1, DataType::F16, 0),
74 TensorInfo(TensorShape(21U, 275U), 1, DataType::F32, 0),
75 TensorInfo(TensorShape(21U, 275U), 1, DataType::F32, 0),
76 TensorInfo(TensorShape(21U, 274U), 1, DataType::F32, 0),
77 TensorInfo(TensorShape(21U, 275U), 1, DataType::F32, 0),
78 TensorInfo(TensorShape(21U, 275U), 1, DataType::F32, 0),
79 TensorInfo(TensorShape(21U, 275U), 1, DataType::F32, 0)
80 })),
81 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(11U, 25U, 21U), 1, DataType::F32, 0),
82 TensorInfo(TensorShape(11U, 25U, 21U), 1, DataType::F32, 0),
83 TensorInfo(TensorShape(11U, 25U, 21U), 1, DataType::F16, 0),
84 TensorInfo(TensorShape(11U, 25U, 21U), 1, DataType::F32, 0),
85 TensorInfo(TensorShape(11U, 25U, 21U), 1, DataType::F32, 0),
86 TensorInfo(TensorShape(11U, 25U, 22U), 1, DataType::F32, 0),
87 TensorInfo(TensorShape(11U, 25U, 21U), 1, DataType::F32, 0),
88 TensorInfo(TensorShape(11U, 25U, 21U), 1, DataType::F32, 0)
89 })),
90 framework::dataset::make("PadStride", { PadStrideInfo(2, 1, 0, 0),
91 PadStrideInfo(2, 1, 0, 0),
92 PadStrideInfo(2, 1, 0, 0),
93 PadStrideInfo(2, 1, 0, 0),
94 PadStrideInfo(2, 1, 0, 0),
95 PadStrideInfo(2, 1, 0, 0),
96 PadStrideInfo(2, 1, 1, 0, 0, 0, DimensionRoundingType::FLOOR),
97 PadStrideInfo(2, 1, 0, 0)
98 })),
99 framework::dataset::make("Expected", { false, false, false, false, false, false, false, true })),
100 input_info, weights_info, bias_info, output_info, conv_info, expected)
101{
102 bool is_valid = bool(NELocallyConnectedLayer::validate(&input_info.clone()->set_is_resizable(false),
103 &weights_info.clone()->set_is_resizable(false),
104 &bias_info.clone()->set_is_resizable(false),
105 &output_info.clone()->set_is_resizable(false),
106 conv_info));
107 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
108}
109// clang-format on
110// *INDENT-ON*
111
Sanghoon Leef47bfb92018-01-23 15:16:47 +0000112DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(framework::dataset::concat(datasets::SmallLocallyConnectedDataset(), datasets::LargeLocallyConnectedDataset()),
113 framework::dataset::make("DataType", DataType::F32)),
114 src_shape, weights_shape, bias_shape, dst_shape, info, data_type)
115{
116 // Create tensors
117 Tensor src = create_tensor<Tensor>(src_shape, data_type);
118 Tensor weights = create_tensor<Tensor>(weights_shape, data_type);
119 Tensor bias = create_tensor<Tensor>(bias_shape, data_type);
120 Tensor dst = create_tensor<Tensor>(dst_shape, data_type);
121
122 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
123 ARM_COMPUTE_EXPECT(weights.info()->is_resizable(), framework::LogLevel::ERRORS);
124 ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
125 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
126
127 // Create and configure function.
128 NELocallyConnectedLayer lc;
129 lc.configure(&src, &weights, &bias, &dst, info);
130
131 // Validate valid region
132 const ValidRegion dst_valid_region = shape_to_valid_region(dst_shape);
133 validate(dst.info()->valid_region(), dst_valid_region);
134}
135
136template <typename T>
137using NELocallyConnectedFixture = LocallyConnectedValidationFixture<Tensor, Accessor, NELocallyConnectedLayer, T>;
138FIXTURE_DATA_TEST_CASE(RunSmall, NELocallyConnectedFixture<float>, framework::DatasetMode::PRECOMMIT, combine(datasets::SmallLocallyConnectedDataset(),
139 framework::dataset::make("DataType",
140 DataType::F32)))
141{
142 // Validate output
143 validate(Accessor(_target), _reference, tolerance_f32);
144}
145
146FIXTURE_DATA_TEST_CASE(RunLarge, NELocallyConnectedFixture<float>, framework::DatasetMode::PRECOMMIT, combine(datasets::LargeLocallyConnectedDataset(),
147 framework::dataset::make("DataType",
148 DataType::F32)))
149{
150 // Validate output
151 validate(Accessor(_target), _reference, tolerance_f32);
152}
153TEST_SUITE_END()
154TEST_SUITE_END()
155} // namespace validation
156} // namespace test
157} // namespace arm_compute