blob: 8cbfda382b6fa38add4cbd8ee6649515bbbaaedf [file] [log] [blame]
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +01001/*
Michalis Spyrou8c571692019-04-05 11:29:52 +01002 * Copyright (c) 2017-2019 ARM Limited.
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +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"
Michalis Spyrou8c571692019-04-05 11:29:52 +010027#include "arm_compute/runtime/CL/functions/CLConcatenateLayer.h"
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010028#include "tests/CL/CLAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010029#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"
Michalis Spyrou8c571692019-04-05 11:29:52 +010034#include "tests/validation/fixtures/ConcatenateLayerFixture.h"
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010035
36namespace arm_compute
37{
38namespace test
39{
40namespace validation
41{
42TEST_SUITE(CL)
43TEST_SUITE(DepthConcatenateLayer)
44
Georgios Pinitase29acf12018-07-16 14:40:09 +010045// *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), 1, DataType::F32), // Mismatching data type input/output
49 TensorInfo(TensorShape(24U, 27U, 4U), 1, DataType::F32), // Mismatching x dimension
50 TensorInfo(TensorShape(23U, 27U, 3U), 1, DataType::F32), // Mismatching total depth
51 TensorInfo(TensorShape(16U, 27U, 6U), 1, DataType::F32)
52 }),
53 framework::dataset::make("InputInfo2", { TensorInfo(TensorShape(23U, 27U, 4U), 1, DataType::F32),
54 TensorInfo(TensorShape(23U, 27U, 5U), 1, DataType::F32),
55 TensorInfo(TensorShape(23U, 27U, 4U), 1, DataType::F32),
56 TensorInfo(TensorShape(16U, 27U, 6U), 1, DataType::F32)
57 })),
58 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(23U, 27U, 9U), 1, DataType::F16),
59 TensorInfo(TensorShape(25U, 12U, 9U), 1, DataType::F32),
60 TensorInfo(TensorShape(23U, 27U, 8U), 1, DataType::F32),
61 TensorInfo(TensorShape(16U, 27U, 12U), 1, DataType::F32)
62 })),
63 framework::dataset::make("Expected", { false, false, false, true })),
64 input_info1, input_info2, output_info,expected)
65{
66 std::vector<TensorInfo> inputs_vector_info;
67 inputs_vector_info.emplace_back(std::move(input_info1));
68 inputs_vector_info.emplace_back(std::move(input_info2));
69
70 std::vector<ITensorInfo *> inputs_vector_info_raw;
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010071 inputs_vector_info_raw.reserve(inputs_vector_info.size());
Georgios Pinitase29acf12018-07-16 14:40:09 +010072 for(auto &input : inputs_vector_info)
73 {
74 inputs_vector_info_raw.emplace_back(&input);
75 }
76
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010077 bool is_valid = bool(CLConcatenateLayer::validate(inputs_vector_info_raw, &output_info.clone()->set_is_resizable(false), 2));
Georgios Pinitase29acf12018-07-16 14:40:09 +010078 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
79}
80// clang-format on
81// *INDENT-ON*
82
Georgios Pinitas88627fb2018-02-26 20:33:40 +000083TEST_CASE(Configuration, framework::DatasetMode::ALL)
84{
85 // Create tensors
Michalis Spyrou8c571692019-04-05 11:29:52 +010086 CLTensor src1 = create_tensor<CLTensor>(TensorShape(128U, 32U, 32U), DataType::F32, 1);
Michalis Spyroua9c44722019-04-05 17:18:36 +010087 CLTensor src2 = create_tensor<CLTensor>(TensorShape(128U, 32U, 32U), DataType::F32, 1);
88 CLTensor src3 = create_tensor<CLTensor>(TensorShape(128U, 32U, 32U), DataType::F32, 1);
Georgios Pinitas88627fb2018-02-26 20:33:40 +000089 CLTensor dst;
90
91 ARM_COMPUTE_EXPECT(src1.info()->is_resizable(), framework::LogLevel::ERRORS);
92 ARM_COMPUTE_EXPECT(src2.info()->is_resizable(), framework::LogLevel::ERRORS);
Michalis Spyrou8c571692019-04-05 11:29:52 +010093 ARM_COMPUTE_EXPECT(src3.info()->is_resizable(), framework::LogLevel::ERRORS);
Georgios Pinitas88627fb2018-02-26 20:33:40 +000094 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
95
96 // Create and configure function
Michalis Spyrou8c571692019-04-05 11:29:52 +010097 CLConcatenateLayer concat_layer;
Georgios Pinitas88627fb2018-02-26 20:33:40 +000098
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010099 concat_layer.configure({ &src1, &src2, &src3 }, &dst, 2);
Georgios Pinitas88627fb2018-02-26 20:33:40 +0000100}
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100101template <typename T>
Michalis Spyrou8c571692019-04-05 11:29:52 +0100102using CLDepthConcatenateLayerFixture = ConcatenateLayerValidationFixture<CLTensor, ICLTensor, CLAccessor, CLConcatenateLayer, T>;
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100103
104TEST_SUITE(Float)
105TEST_SUITE(FP16)
Michalis Spyrou8c571692019-04-05 11:29:52 +0100106FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthConcatenateLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small3DShapes(), datasets::Tiny4DShapes()),
107 framework::dataset::make("DataType",
108 DataType::F16)),
109 framework::dataset::make("Axis", 2)))
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100110{
111 // Validate output
112 validate(CLAccessor(_target), _reference);
113}
Michalis Spyrou8c571692019-04-05 11:29:52 +0100114FIXTURE_DATA_TEST_CASE(RunLarge, CLDepthConcatenateLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(concat(datasets::Large3DShapes(), datasets::Small4DShapes()),
115 framework::dataset::make("DataType",
116 DataType::F16)),
117 framework::dataset::make("Axis", 2)))
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100118{
119 // Validate output
120 validate(CLAccessor(_target), _reference);
121}
122TEST_SUITE_END()
123
124TEST_SUITE(FP32)
Michalis Spyrou8c571692019-04-05 11:29:52 +0100125FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthConcatenateLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small3DShapes(), datasets::Tiny4DShapes()),
126 framework::dataset::make("DataType",
127 DataType::F32)),
128 framework::dataset::make("Axis", 2)))
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100129{
130 // Validate output
131 validate(CLAccessor(_target), _reference);
132}
Michalis Spyrou8c571692019-04-05 11:29:52 +0100133FIXTURE_DATA_TEST_CASE(RunLarge, CLDepthConcatenateLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
134 DataType::F32)),
135 framework::dataset::make("Axis", 2)))
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100136{
137 // Validate output
138 validate(CLAccessor(_target), _reference);
139}
140TEST_SUITE_END()
141TEST_SUITE_END()
142
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000143TEST_SUITE(Quantized)
144TEST_SUITE(QASYMM8)
Michalis Spyrou8c571692019-04-05 11:29:52 +0100145FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small3DShapes(), datasets::Tiny4DShapes()),
146 framework::dataset::make("DataType",
147 DataType::QASYMM8)),
148 framework::dataset::make("Axis", 2)))
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000149{
150 // Validate output
151 validate(CLAccessor(_target), _reference);
152}
Michalis Spyrou8c571692019-04-05 11:29:52 +0100153FIXTURE_DATA_TEST_CASE(RunLarge, CLDepthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
154 DataType::QASYMM8)),
155 framework::dataset::make("Axis", 2)))
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000156{
157 // Validate output
158 validate(CLAccessor(_target), _reference);
159}
160TEST_SUITE_END()
161TEST_SUITE_END()
162
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100163TEST_SUITE_END()
164TEST_SUITE_END()
165} // namespace validation
166} // namespace test
167} // namespace arm_compute