1 /*
2 * Copyright (c) 2018-2020 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/CLTile.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/TileFixture.h"
35
36 namespace arm_compute
37 {
38 namespace test
39 {
40 namespace validation
41 {
42 namespace
43 {
44 const auto MultiplesDataset = framework::dataset::make("Multiples", { Multiples{ 3 },
45 Multiples{ 2, 2 },
46 Multiples{ 1, 1, 3, 4 },
47 Multiples{ 2, 1, 2, 2 },
48 Multiples{ 2, 1, 3 },
49 Multiples{ 2, 2, 2 }
50 });
51 } // namespace
52 TEST_SUITE(CL)
TEST_SUITE(Tile)53 TEST_SUITE(Tile)
54
55 // *INDENT-OFF*
56 // clang-format off
57 DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
58 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(10, 10), 1, DataType::F32),
59 TensorInfo(TensorShape(10, 10), 1, DataType::F32), // Mismatching shape
60 TensorInfo(TensorShape(10, 10), 1, DataType::F16), // Mismatching type
61 TensorInfo(TensorShape(10, 10), 1, DataType::F32)}), // Wrong multiples
62 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(10, 20), 1, DataType::F32),
63 TensorInfo(TensorShape(20, 20), 1, DataType::F32),
64 TensorInfo(TensorShape(20, 20), 1, DataType::F32),
65 TensorInfo(TensorShape(10, 20), 1, DataType::F32)})),
66 framework::dataset::make("Multiples",{ Multiples{1, 2}, Multiples{1, 2}, Multiples{0, 1} })),
67 framework::dataset::make("Expected", {true, false, false, false })),
68 input_info, output_info, multiples, expected)
69 {
70 const Status status = CLTile::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), multiples);
71 ARM_COMPUTE_EXPECT(bool(status) == expected, framework::LogLevel::ERRORS);
72 }
73 // clang-format on
74 // *INDENT-ON*
75
76 template <typename T>
77 using CLTileFixture = TileValidationFixture<CLTensor, CLAccessor, CLTile, T>;
78
79 TEST_SUITE(Float)
TEST_SUITE(FP16)80 TEST_SUITE(FP16)
81 FIXTURE_DATA_TEST_CASE(RunSmall, CLTileFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::F16)),
82 MultiplesDataset))
83 {
84 // Validate output
85 validate(CLAccessor(_target), _reference);
86 }
87 FIXTURE_DATA_TEST_CASE(RunLarge, CLTileFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(), framework::dataset::make("DataType", DataType::F16)), MultiplesDataset))
88 {
89 // Validate output
90 validate(CLAccessor(_target), _reference);
91 }
92 TEST_SUITE_END() // FP16
93
TEST_SUITE(FP32)94 TEST_SUITE(FP32)
95 FIXTURE_DATA_TEST_CASE(RunSmall, CLTileFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::F32)),
96 MultiplesDataset))
97 {
98 // Validate output
99 validate(CLAccessor(_target), _reference);
100 }
101 FIXTURE_DATA_TEST_CASE(RunLarge, CLTileFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(), framework::dataset::make("DataType", DataType::F32)),
102 MultiplesDataset))
103 {
104 // Validate output
105 validate(CLAccessor(_target), _reference);
106 }
107 TEST_SUITE_END() // FP32
TEST_SUITE_END()108 TEST_SUITE_END() // Float
109
110 TEST_SUITE(Integer)
111 TEST_SUITE(S8)
112 FIXTURE_DATA_TEST_CASE(RunSmall, CLTileFixture<int8_t>, framework::DatasetMode::ALL,
113 combine(
114 combine(datasets::SmallShapes(), framework::dataset::make("DataType", { DataType::S8 })),
115 MultiplesDataset))
116 {
117 // Validate output
118 validate(CLAccessor(_target), _reference);
119 }
120 TEST_SUITE_END() // S8
TEST_SUITE_END()121 TEST_SUITE_END() // Integer
122
123 TEST_SUITE(Quantized)
124 TEST_SUITE(QASYMM8)
125 FIXTURE_DATA_TEST_CASE(RunSmall, CLTileFixture<uint8_t>, framework::DatasetMode::ALL,
126 combine(
127 combine(datasets::SmallShapes(), framework::dataset::make("DataType", { DataType::QASYMM8 })),
128 MultiplesDataset))
129 {
130 // Validate output
131 validate(CLAccessor(_target), _reference);
132 }
133 TEST_SUITE_END() // QASYMM8
134 TEST_SUITE_END() // Quantized
135
136 TEST_SUITE_END() // Tile
137 TEST_SUITE_END() // CL
138 } // namespace validation
139 } // namespace test
140 } // namespace arm_compute
141