blob: 6fd189b716897033b6c418f813bbee14208ebb1d [file] [log] [blame]
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +01001/*
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +01002 * Copyright (c) 2019-2020 Arm Limited.
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +01003 *
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/CLConcatenateLayer.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/ConcatenateLayerFixture.h"
35
36namespace arm_compute
37{
38namespace test
39{
40namespace validation
41{
42TEST_SUITE(CL)
43TEST_SUITE(BatchConcatenateLayer)
44
45// *INDENT-OFF*
46// clang-format off
47DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
48 framework::dataset::make("InputInfo1", { TensorInfo(TensorShape(23U, 27U, 5U, 4U), 1, DataType::F32), // Mismatching data type input/output
49 TensorInfo(TensorShape(20U, 27U, 4U, 4U), 1, DataType::F32), // Mismatching x dimension
50 TensorInfo(TensorShape(23U, 26U, 4U, 3U), 1, DataType::F32), // Mismatching y dim
51 TensorInfo(TensorShape(23U, 27U, 4U, 3U), 1, DataType::F32), // Mismatching z dim
52 TensorInfo(TensorShape(16U, 27U, 3U, 6U), 1, DataType::F32)
53 }),
54 framework::dataset::make("InputInfo2", { TensorInfo(TensorShape(23U, 27U, 5U, 4U), 1, DataType::F32),
55 TensorInfo(TensorShape(23U, 27U, 4U, 4U), 1, DataType::F32),
56 TensorInfo(TensorShape(23U, 27U, 4U, 4U), 1, DataType::F32),
57 TensorInfo(TensorShape(23U, 27U, 3U, 3U), 1, DataType::F32),
58 TensorInfo(TensorShape(16U, 27U, 3U, 6U), 1, DataType::F32)
59 })),
60 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(23U, 27U, 5U, 4U), 1, DataType::F16),
61 TensorInfo(TensorShape(23U, 12U, 4U, 4U), 1, DataType::F32),
62 TensorInfo(TensorShape(23U, 27U, 4U, 4U), 1, DataType::F32),
63 TensorInfo(TensorShape(23U, 20U, 4U, 3U), 1, DataType::F32),
64 TensorInfo(TensorShape(16U, 27U, 3U, 12U), 1, DataType::F32)
65 })),
66 framework::dataset::make("Expected", { false, false, false, false, true })),
67 input_info1, input_info2, output_info,expected)
68{
69 std::vector<TensorInfo> inputs_vector_info;
70 inputs_vector_info.emplace_back(std::move(input_info1));
71 inputs_vector_info.emplace_back(std::move(input_info2));
72
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010073 std::vector<const ITensorInfo *> inputs_vector_info_raw;
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +010074 inputs_vector_info_raw.reserve(inputs_vector_info.size());
75 for(auto &input : inputs_vector_info)
76 {
77 inputs_vector_info_raw.emplace_back(&input);
78 }
79
80 bool is_valid = bool(CLConcatenateLayer::validate(inputs_vector_info_raw, &output_info.clone()->set_is_resizable(false), 3));
81 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
82}
83// clang-format on
84// *INDENT-ON*
85
86TEST_CASE(Configuration, framework::DatasetMode::ALL)
87{
88 // Create tensors
89 CLTensor src1 = create_tensor<CLTensor>(TensorShape(128U, 32U, 32U), DataType::F32, 1);
90 CLTensor src2 = create_tensor<CLTensor>(TensorShape(128U, 32U, 32U), DataType::F32, 1);
91 CLTensor src3 = create_tensor<CLTensor>(TensorShape(128U, 32U, 32U), DataType::F32, 1);
92 CLTensor dst;
93
94 ARM_COMPUTE_EXPECT(src1.info()->is_resizable(), framework::LogLevel::ERRORS);
95 ARM_COMPUTE_EXPECT(src2.info()->is_resizable(), framework::LogLevel::ERRORS);
96 ARM_COMPUTE_EXPECT(src3.info()->is_resizable(), framework::LogLevel::ERRORS);
97 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
98
99 // Create and configure function
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100100 CLConcatenateLayer concat_layer;
101 std::vector<const ICLTensor *> inputs;
Manuel Bottini10c53f12019-07-17 16:11:53 +0100102 inputs.emplace_back(&src1);
103 inputs.emplace_back(&src2);
104 inputs.emplace_back(&src3);
105 concat_layer.configure(inputs, &dst, 3);
Vidhya Sudhan Loganathan338595b2019-06-28 14:09:53 +0100106}
107template <typename T>
108using CLBatchConcatenateLayerFixture = ConcatenateLayerValidationFixture<CLTensor, ICLTensor, CLAccessor, CLConcatenateLayer, T>;
109
110TEST_SUITE(Float)
111TEST_SUITE(FP16)
112FIXTURE_DATA_TEST_CASE(RunSmall, CLBatchConcatenateLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small3DShapes(), datasets::Tiny4DShapes()),
113 framework::dataset::make("DataType",
114 DataType::F16)),
115 framework::dataset::make("Axis", 3)))
116{
117 // Validate output
118 validate(CLAccessor(_target), _reference);
119}
120FIXTURE_DATA_TEST_CASE(RunLarge, CLBatchConcatenateLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(concat(datasets::Large3DShapes(), datasets::Small4DShapes()),
121 framework::dataset::make("DataType",
122 DataType::F16)),
123 framework::dataset::make("Axis", 3)))
124{
125 // Validate output
126 validate(CLAccessor(_target), _reference);
127}
128TEST_SUITE_END()
129
130TEST_SUITE(FP32)
131FIXTURE_DATA_TEST_CASE(RunSmall, CLBatchConcatenateLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small3DShapes(), datasets::Tiny4DShapes()),
132 framework::dataset::make("DataType",
133 DataType::F32)),
134 framework::dataset::make("Axis", 3)))
135{
136 // Validate output
137 validate(CLAccessor(_target), _reference);
138}
139FIXTURE_DATA_TEST_CASE(RunLarge, CLBatchConcatenateLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
140 DataType::F32)),
141 framework::dataset::make("Axis", 3)))
142{
143 // Validate output
144 validate(CLAccessor(_target), _reference);
145}
146TEST_SUITE_END()
147TEST_SUITE_END()
148
149TEST_SUITE(Quantized)
150TEST_SUITE(QASYMM8)
151FIXTURE_DATA_TEST_CASE(RunSmall, CLBatchConcatenateLayerFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small3DShapes(), datasets::Tiny4DShapes()),
152 framework::dataset::make("DataType",
153 DataType::QASYMM8)),
154 framework::dataset::make("Axis", 3)))
155{
156 // Validate output
157 validate(CLAccessor(_target), _reference);
158}
159FIXTURE_DATA_TEST_CASE(RunLarge, CLBatchConcatenateLayerFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
160 DataType::QASYMM8)),
161 framework::dataset::make("Axis", 3)))
162{
163 // Validate output
164 validate(CLAccessor(_target), _reference);
165}
166TEST_SUITE_END()
167TEST_SUITE_END()
168
169TEST_SUITE_END()
170TEST_SUITE_END()
171} // namespace validation
172} // namespace test
173} // namespace arm_compute