blob: e1f01259da4a73402e74c8b422bf622e4ce186eb [file] [log] [blame]
giuros013175fcf2018-11-21 09:59:17 +00001/*
Michalis Spyrou92c22282019-02-20 10:54:54 +00002 * Copyright (c) 2018-2019 ARM Limited.
giuros013175fcf2018-11-21 09:59:17 +00003 *
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 },
Michalis Spyrou92c22282019-02-20 10:54:54 +000046 Multiples{ 1, 1, 3, 4 },
giuros013175fcf2018-11-21 09:59:17 +000047 Multiples{ 2, 1, 2, 2 },
48 Multiples{ 2, 1, 3 },
giuros013175fcf2018-11-21 09:59:17 +000049 Multiples{ 2, 2, 2 }
50 });
51} // namespace
52TEST_SUITE(CL)
53TEST_SUITE(Tile)
54
55// *INDENT-OFF*
56// clang-format off
57DATA_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
76template <typename T>
77using CLTileFixture = TileValidationFixture<CLTensor, CLAccessor, CLTile, T>;
78
79TEST_SUITE(Float)
80TEST_SUITE(FP16)
81FIXTURE_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}
87FIXTURE_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}
92TEST_SUITE_END() // FP16
93
94TEST_SUITE(FP32)
95FIXTURE_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}
101FIXTURE_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}
107TEST_SUITE_END() // FP32
108TEST_SUITE_END() // Float
109
110TEST_SUITE(Integer)
111TEST_SUITE(S8)
112FIXTURE_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}
120TEST_SUITE_END() // S8
121TEST_SUITE_END() // Integer
122
123TEST_SUITE(Quantized)
124TEST_SUITE(QASYMM8)
125FIXTURE_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}
133TEST_SUITE_END() // QASYMM8
134TEST_SUITE_END() // Quantized
135
136TEST_SUITE_END() // Tile
137TEST_SUITE_END() // CL
138} // namespace validation
139} // namespace test
140} // namespace arm_compute