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