blob: 408fe148d7796fa09d59b894645e94a5853c198d [file] [log] [blame]
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001/*
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +01002 * Copyright (c) 2018-2020 Arm Limited.
Michalis Spyrou55b3d122018-05-09 09:59:23 +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"
Pablo Tello3dd5b682019-03-04 14:14:02 +000027#include "arm_compute/runtime/CL/functions/CLConcatenateLayer.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010028#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"
Pablo Tello3dd5b682019-03-04 14:14:02 +000034#include "tests/validation/fixtures/ConcatenateLayerFixture.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010035
36namespace arm_compute
37{
38namespace test
39{
40namespace validation
41{
42TEST_SUITE(CL)
43TEST_SUITE(WidthConcatenateLayer)
44// *INDENT-OFF*
45// clang-format off
46DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010047 framework::dataset::make("InputInfo1", { TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32), // Mismatching data type input/output
48 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32), // Mismatching y dimension
49 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32), // Mismatching total width
Usama Arifc63c3702019-03-21 11:49:25 +000050 TensorInfo(TensorShape(16U, 27U, 5U), 1, DataType::F32),
51 TensorInfo(TensorShape(21U, 35U, 5U), 1, DataType::F32)
52
Michalis Spyrou55b3d122018-05-09 09:59:23 +010053 }),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010054 framework::dataset::make("InputInfo2", { TensorInfo(TensorShape(24U, 27U, 4U), 1, DataType::F32),
55 TensorInfo(TensorShape(52U, 27U, 5U), 1, DataType::F32),
56 TensorInfo(TensorShape(52U, 27U, 5U), 1, DataType::F32),
Usama Arifc63c3702019-03-21 11:49:25 +000057 TensorInfo(TensorShape(16U, 27U, 5U), 1, DataType::F32),
58 TensorInfo(TensorShape(10U, 35U, 5U), 1, DataType::F32)
Michalis Spyrou55b3d122018-05-09 09:59:23 +010059 })),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010060 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(47U, 27U, 5U), 1, DataType::F16),
61 TensorInfo(TensorShape(75U, 12U, 5U), 1, DataType::F32),
62 TensorInfo(TensorShape(11U, 27U, 5U), 1, DataType::F32),
Usama Arifc63c3702019-03-21 11:49:25 +000063 TensorInfo(TensorShape(32U, 27U, 5U), 1, DataType::F32),
64 TensorInfo(TensorShape(31U, 35U, 5U), 1, DataType::F32)
65
Michalis Spyrou55b3d122018-05-09 09:59:23 +010066 })),
Usama Arifc63c3702019-03-21 11:49:25 +000067 framework::dataset::make("Expected", { false, false, false, true, true })),
Michalis Spyrou55b3d122018-05-09 09:59:23 +010068 input_info1, input_info2, output_info,expected)
69{
70 std::vector<TensorInfo> inputs_vector_info;
71 inputs_vector_info.emplace_back(std::move(input_info1));
72 inputs_vector_info.emplace_back(std::move(input_info2));
73
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010074 std::vector<const ITensorInfo *> inputs_vector_info_raw;
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010075 inputs_vector_info_raw.reserve(inputs_vector_info.size());
Michalis Spyrou55b3d122018-05-09 09:59:23 +010076 for(auto &input : inputs_vector_info)
77 {
78 inputs_vector_info_raw.emplace_back(&input);
79 }
80
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010081 bool is_valid = bool(CLConcatenateLayer::validate(inputs_vector_info_raw,&output_info.clone()->set_is_resizable(true), 0));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010082 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
83}
84// clang-format on
85// *INDENT-ON*
86
87TEST_CASE(Configuration, framework::DatasetMode::ALL)
88{
89 // Create tensors
90 CLTensor src1 = create_tensor<CLTensor>(TensorShape(128U, 32U, 32U), DataType::F32, 1);
91 CLTensor src2 = create_tensor<CLTensor>(TensorShape(32U, 32U, 32U), DataType::F32, 1);
92 CLTensor src3 = create_tensor<CLTensor>(TensorShape(15U, 32U, 32U), DataType::F32, 1);
93 CLTensor dst;
94
95 ARM_COMPUTE_EXPECT(src1.info()->is_resizable(), framework::LogLevel::ERRORS);
96 ARM_COMPUTE_EXPECT(src2.info()->is_resizable(), framework::LogLevel::ERRORS);
97 ARM_COMPUTE_EXPECT(src3.info()->is_resizable(), framework::LogLevel::ERRORS);
98 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
99
100 // Create and configure function
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100101 CLConcatenateLayer concat_layer;
102 std::vector<const ICLTensor *> inputs;
Manuel Bottini10c53f12019-07-17 16:11:53 +0100103 inputs.emplace_back(&src1);
104 inputs.emplace_back(&src2);
105 inputs.emplace_back(&src3);
106 concat_layer.configure(inputs, &dst, 0);
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100107}
108
109template <typename T>
Pablo Tello3dd5b682019-03-04 14:14:02 +0000110using CLWidthConcatenateLayerFixture = ConcatenateLayerValidationFixture<CLTensor, ICLTensor, CLAccessor, CLConcatenateLayer, T>;
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100111
112TEST_SUITE(Float)
113TEST_SUITE(FP16)
Pablo Tello3dd5b682019-03-04 14:14:02 +0000114FIXTURE_DATA_TEST_CASE(RunSmall, CLWidthConcatenateLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100115 framework::dataset::make("DataType",
Pablo Tello3dd5b682019-03-04 14:14:02 +0000116 DataType::F16)),
117 framework::dataset::make("Axis", 0)))
118
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100119{
120 // Validate output
121 validate(CLAccessor(_target), _reference);
122}
Pablo Tello3dd5b682019-03-04 14:14:02 +0000123FIXTURE_DATA_TEST_CASE(RunLarge, CLWidthConcatenateLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(concat(datasets::Large2DShapes(), datasets::Small4DShapes()),
124 framework::dataset::make("DataType",
125 DataType::F16)),
126 framework::dataset::make("Axis", 0)))
127
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100128{
129 // Validate output
130 validate(CLAccessor(_target), _reference);
131}
132TEST_SUITE_END()
133
134TEST_SUITE(FP32)
Pablo Tello3dd5b682019-03-04 14:14:02 +0000135FIXTURE_DATA_TEST_CASE(RunSmall, CLWidthConcatenateLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100136 framework::dataset::make("DataType",
Pablo Tello3dd5b682019-03-04 14:14:02 +0000137 DataType::F32)),
138 framework::dataset::make("Axis", 0)))
139
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100140{
141 // Validate output
142 validate(CLAccessor(_target), _reference);
143}
Pablo Tello3dd5b682019-03-04 14:14:02 +0000144FIXTURE_DATA_TEST_CASE(RunLarge, CLWidthConcatenateLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
145 DataType::F32)),
146 framework::dataset::make("Axis", 0)))
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100147{
148 // Validate output
149 validate(CLAccessor(_target), _reference);
150}
151TEST_SUITE_END()
152TEST_SUITE_END()
153
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000154TEST_SUITE(Quantized)
155TEST_SUITE(QASYMM8)
Pablo Tello3dd5b682019-03-04 14:14:02 +0000156FIXTURE_DATA_TEST_CASE(RunSmall, CLWidthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000157 framework::dataset::make("DataType",
Pablo Tello3dd5b682019-03-04 14:14:02 +0000158 DataType::QASYMM8)),
159 framework::dataset::make("Axis", 0)))
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000160{
161 // Validate output
162 validate(CLAccessor(_target), _reference);
163}
Pablo Tello3dd5b682019-03-04 14:14:02 +0000164FIXTURE_DATA_TEST_CASE(RunLarge, CLWidthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
165 DataType::QASYMM8)),
166 framework::dataset::make("Axis", 0)))
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000167{
168 // Validate output
169 validate(CLAccessor(_target), _reference);
170}
171TEST_SUITE_END()
172TEST_SUITE_END()
173
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100174TEST_SUITE_END()
175TEST_SUITE_END()
176} // namespace validation
177} // namespace test
178} // namespace arm_compute