blob: f67c447df7cb9eecaba123136943b65a9c62c6da [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/CL/CLTensor.h"
26#include "arm_compute/runtime/CL/CLTensorAllocator.h"
27#include "arm_compute/runtime/CL/functions/CLConvertFullyConnectedWeights.h"
28#include "tests/CL/CLAccessor.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(CL)
48TEST_SUITE(ConvertFullyConnectedWeights)
49
50template <typename T>
51using CLConvertFullyConnectedWeightsFixture = ConvertFullyConnectedWeightsValidationFixture<CLTensor, CLAccessor, CLConvertFullyConnectedWeights, T>;
52
53TEST_SUITE(FP32)
Giorgio Arena1731d512018-05-14 11:21:46 +010054FIXTURE_DATA_TEST_CASE(RunSmall, CLConvertFullyConnectedWeightsFixture<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(CLAccessor(_target), _reference);
59}
Giorgio Arena1731d512018-05-14 11:21:46 +010060FIXTURE_DATA_TEST_CASE(RunLarge, CLConvertFullyConnectedWeightsFixture<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(CLAccessor(_target), _reference);
65}
66TEST_SUITE_END()
67
68TEST_SUITE(FP16)
Giorgio Arena1731d512018-05-14 11:21:46 +010069FIXTURE_DATA_TEST_CASE(RunSmall, CLConvertFullyConnectedWeightsFixture<half>, framework::DatasetMode::ALL, combine(datasets::Small3DShapes(), combine(params, framework::dataset::make("DataType",
Giorgio Arena657bdb32018-04-26 18:52:01 +010070 DataType::F16))))
71{
72 // Validate output
73 validate(CLAccessor(_target), _reference);
74}
Giorgio Arena1731d512018-05-14 11:21:46 +010075FIXTURE_DATA_TEST_CASE(RunLarge, CLConvertFullyConnectedWeightsFixture<half>, framework::DatasetMode::NIGHTLY, combine(datasets::Large3DShapes(), combine(params, framework::dataset::make("DataType",
Giorgio Arena657bdb32018-04-26 18:52:01 +010076 DataType::F16))))
77{
78 // Validate output
79 validate(CLAccessor(_target), _reference);
80}
81TEST_SUITE_END()
82
83TEST_SUITE(QASYMM8)
Giorgio Arena1731d512018-05-14 11:21:46 +010084FIXTURE_DATA_TEST_CASE(RunSmall, CLConvertFullyConnectedWeightsFixture<uint8_t>, framework::DatasetMode::ALL, combine(datasets::Small3DShapes(), combine(params, framework::dataset::make("DataType",
Giorgio Arena657bdb32018-04-26 18:52:01 +010085 DataType::QASYMM8))))
86{
87 // Validate output
88 validate(CLAccessor(_target), _reference);
89}
Giorgio Arena1731d512018-05-14 11:21:46 +010090FIXTURE_DATA_TEST_CASE(RunLarge, CLConvertFullyConnectedWeightsFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large3DShapes(), combine(params,
91 framework::dataset::make("DataType",
92 DataType::QASYMM8))))
Giorgio Arena657bdb32018-04-26 18:52:01 +010093{
94 // Validate output
95 validate(CLAccessor(_target), _reference);
96}
97TEST_SUITE_END()
98
99TEST_SUITE_END()
100TEST_SUITE_END()
101} // namespace validation
102} // namespace test
103} // namespace arm_compute