blob: dbb81d69024b43a3c2034e2d2e01991f84f94589 [file] [log] [blame]
Giorgio Arena657bdb32018-04-26 18:52:01 +01001/*
2 * Copyright (c) 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/NEConvertFullyConnectedWeights.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.h"
29#include "tests/datasets/ShapeDatasets.h"
30#include "tests/framework/Asserts.h"
31#include "tests/framework/Macros.h"
32#include "tests/framework/datasets/Datasets.h"
33#include "tests/validation/Validation.h"
34#include "tests/validation/fixtures/ConvertFullyConnectedWeightsFixture.h"
35
36namespace arm_compute
37{
38namespace test
39{
40namespace validation
41{
42namespace
43{
44auto params = combine(framework::dataset::make("WeightsWidth", { 16, 32, 64 }), framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC }));
45} // namespace
46
47TEST_SUITE(NEON)
48TEST_SUITE(ConvertFullyConnectedWeights)
49
50template <typename T>
51using NEConvertFullyConnectedWeightsFixture = ConvertFullyConnectedWeightsValidationFixture<Tensor, Accessor, NEConvertFullyConnectedWeights, T>;
52
53TEST_SUITE(FP32)
Giorgio Arena1731d512018-05-14 11:21:46 +010054FIXTURE_DATA_TEST_CASE(RunSmall, NEConvertFullyConnectedWeightsFixture<float>, framework::DatasetMode::ALL, combine(datasets::Small3DShapes(), combine(params, framework::dataset::make("DataType",
Giorgio Arena657bdb32018-04-26 18:52:01 +010055 DataType::F32))))
56{
57 // Validate output
58 validate(Accessor(_target), _reference);
59}
Giorgio Arena1731d512018-05-14 11:21:46 +010060FIXTURE_DATA_TEST_CASE(RunLarge, NEConvertFullyConnectedWeightsFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::Large3DShapes(), combine(params, framework::dataset::make("DataType",
Giorgio Arena657bdb32018-04-26 18:52:01 +010061 DataType::F32))))
62{
63 // Validate output
64 validate(Accessor(_target), _reference);
65}
66TEST_SUITE_END()
67
68#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
69TEST_SUITE(FP16)
Giorgio Arena1731d512018-05-14 11:21:46 +010070FIXTURE_DATA_TEST_CASE(RunSmall, NEConvertFullyConnectedWeightsFixture<half>, framework::DatasetMode::ALL, combine(datasets::Small3DShapes(), combine(params, framework::dataset::make("DataType",
Giorgio Arena657bdb32018-04-26 18:52:01 +010071 DataType::F16))))
72{
73 // Validate output
74 validate(Accessor(_target), _reference);
75}
Giorgio Arena1731d512018-05-14 11:21:46 +010076FIXTURE_DATA_TEST_CASE(RunLarge, NEConvertFullyConnectedWeightsFixture<half>, framework::DatasetMode::NIGHTLY, combine(datasets::Large3DShapes(), combine(params, framework::dataset::make("DataType",
Giorgio Arena657bdb32018-04-26 18:52:01 +010077 DataType::F16))))
78{
79 // Validate output
80 validate(Accessor(_target), _reference);
81}
82TEST_SUITE_END()
83#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
84
85TEST_SUITE(QASYMM8)
Giorgio Arena1731d512018-05-14 11:21:46 +010086FIXTURE_DATA_TEST_CASE(RunSmall, NEConvertFullyConnectedWeightsFixture<uint8_t>, framework::DatasetMode::ALL, combine(datasets::Small3DShapes(), combine(params, framework::dataset::make("DataType",
Giorgio Arena657bdb32018-04-26 18:52:01 +010087 DataType::QASYMM8))))
88{
89 // Validate output
90 validate(Accessor(_target), _reference);
91}
Giorgio Arena1731d512018-05-14 11:21:46 +010092FIXTURE_DATA_TEST_CASE(RunLarge, NEConvertFullyConnectedWeightsFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large3DShapes(), combine(params,
93 framework::dataset::make("DataType",
94 DataType::QASYMM8))))
Giorgio Arena657bdb32018-04-26 18:52:01 +010095{
96 // Validate output
97 validate(Accessor(_target), _reference);
98}
99TEST_SUITE_END()
100
101TEST_SUITE_END()
102TEST_SUITE_END()
103} // namespace validation
104} // namespace test
105} // namespace arm_compute