blob: 647e0413a11c89ea55feb10efe0d1db58bb0050a [file] [log] [blame]
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001/*
Pablo Tello9643c2e2019-02-07 15:53:19 +00002 * Copyright (c) 2018-2019 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"
27#include "arm_compute/runtime/CL/functions/CLWidthConcatenateLayer.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/WidthConcatenateLayerFixture.h"
35
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
50 TensorInfo(TensorShape(16U, 27U, 5U), 1, DataType::F32)
Michalis Spyrou55b3d122018-05-09 09:59:23 +010051 }),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010052 framework::dataset::make("InputInfo2", { TensorInfo(TensorShape(24U, 27U, 4U), 1, DataType::F32),
53 TensorInfo(TensorShape(52U, 27U, 5U), 1, DataType::F32),
54 TensorInfo(TensorShape(52U, 27U, 5U), 1, DataType::F32),
55 TensorInfo(TensorShape(16U, 27U, 5U), 1, DataType::F32)
Michalis Spyrou55b3d122018-05-09 09:59:23 +010056 })),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010057 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(47U, 27U, 5U), 1, DataType::F16),
58 TensorInfo(TensorShape(75U, 12U, 5U), 1, DataType::F32),
59 TensorInfo(TensorShape(11U, 27U, 5U), 1, DataType::F32),
60 TensorInfo(TensorShape(32U, 27U, 5U), 1, DataType::F32)
Michalis Spyrou55b3d122018-05-09 09:59:23 +010061 })),
62 framework::dataset::make("Expected", { false, false, false, true })),
63 input_info1, input_info2, output_info,expected)
64{
65 std::vector<TensorInfo> inputs_vector_info;
66 inputs_vector_info.emplace_back(std::move(input_info1));
67 inputs_vector_info.emplace_back(std::move(input_info2));
68
69 std::vector<ITensorInfo *> inputs_vector_info_raw;
70 for(auto &input : inputs_vector_info)
71 {
72 inputs_vector_info_raw.emplace_back(&input);
73 }
74
75 bool is_valid = bool(CLWidthConcatenateLayer::validate(inputs_vector_info_raw,
76 &output_info.clone()->set_is_resizable(false)));
77 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
78}
79// clang-format on
80// *INDENT-ON*
81
82TEST_CASE(Configuration, framework::DatasetMode::ALL)
83{
84 // Create tensors
85 CLTensor src1 = create_tensor<CLTensor>(TensorShape(128U, 32U, 32U), DataType::F32, 1);
86 CLTensor src2 = create_tensor<CLTensor>(TensorShape(32U, 32U, 32U), DataType::F32, 1);
87 CLTensor src3 = create_tensor<CLTensor>(TensorShape(15U, 32U, 32U), DataType::F32, 1);
88 CLTensor dst;
89
90 ARM_COMPUTE_EXPECT(src1.info()->is_resizable(), framework::LogLevel::ERRORS);
91 ARM_COMPUTE_EXPECT(src2.info()->is_resizable(), framework::LogLevel::ERRORS);
92 ARM_COMPUTE_EXPECT(src3.info()->is_resizable(), framework::LogLevel::ERRORS);
93 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
94
95 // Create and configure function
96 CLWidthConcatenateLayer concat_layer;
97
98 concat_layer.configure({ &src1, &src2, &src3 }, &dst);
99}
100
101template <typename T>
102using CLWidthConcatenateLayerFixture = WidthConcatenateLayerValidationFixture<CLTensor, ICLTensor, CLAccessor, CLWidthConcatenateLayer, T>;
103
104TEST_SUITE(Float)
105TEST_SUITE(FP16)
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100106FIXTURE_DATA_TEST_CASE(RunSmall, CLWidthConcatenateLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
107 framework::dataset::make("DataType",
108 DataType::F16)))
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100109{
110 // Validate output
111 validate(CLAccessor(_target), _reference);
112}
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100113FIXTURE_DATA_TEST_CASE(RunLarge, CLWidthConcatenateLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(concat(datasets::Large2DShapes(), datasets::Small4DShapes()),
114 framework::dataset::make("DataType",
115 DataType::F16)))
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100116{
117 // Validate output
118 validate(CLAccessor(_target), _reference);
119}
120TEST_SUITE_END()
121
122TEST_SUITE(FP32)
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100123FIXTURE_DATA_TEST_CASE(RunSmall, CLWidthConcatenateLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
124 framework::dataset::make("DataType",
125 DataType::F32)))
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100126{
127 // Validate output
128 validate(CLAccessor(_target), _reference);
129}
130FIXTURE_DATA_TEST_CASE(RunLarge, CLWidthConcatenateLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::WidthConcatenateLayerShapes(), framework::dataset::make("DataType",
131 DataType::F32)))
132{
133 // Validate output
134 validate(CLAccessor(_target), _reference);
135}
136TEST_SUITE_END()
137TEST_SUITE_END()
138
Pablo Tello9643c2e2019-02-07 15:53:19 +0000139TEST_SUITE(Quantized)
140TEST_SUITE(QASYMM8)
141FIXTURE_DATA_TEST_CASE(RunSmall, CLWidthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
142 framework::dataset::make("DataType",
143 DataType::QASYMM8)))
144{
145 // Validate output
146 validate(CLAccessor(_target), _reference);
147}
148FIXTURE_DATA_TEST_CASE(RunLarge, CLWidthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::WidthConcatenateLayerShapes(), framework::dataset::make("DataType",
149 DataType::QASYMM8)))
150{
151 // Validate output
152 validate(CLAccessor(_target), _reference);
153}
154TEST_SUITE_END()
155TEST_SUITE_END()
156
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100157TEST_SUITE_END()
158TEST_SUITE_END()
159} // namespace validation
160} // namespace test
161} // namespace arm_compute