blob: c46b797315737ba74d6ebbbcbd363092622f95f7 [file] [log] [blame]
Pablo Tello3dd5b682019-03-04 14:14:02 +00001/*
Georgios Pinitas4667ddd2020-07-13 21:21:33 +01002 * Copyright (c) 2019-2020 Arm Limited.
Pablo Tello3dd5b682019-03-04 14:14:02 +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/NEON/functions/NEConcatenateLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.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(NEON)
43TEST_SUITE(HeightConcatenateLayer)
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, 15U, 5U), 1, DataType::F32), // Mismatching data type input/output
49 TensorInfo(TensorShape(22U, 27U, 5U), 1, DataType::F32), // Mismatching y dimension
50 TensorInfo(TensorShape(11U, 25U, 5U), 1, DataType::F32), // Mismatching total height
Usama Arifc63c3702019-03-21 11:49:25 +000051 TensorInfo(TensorShape(16U, 25U, 5U), 1, DataType::F32),
52 TensorInfo(TensorShape(35U, 21U, 5U), 1, DataType::F32)
53
Pablo Tello3dd5b682019-03-04 14:14:02 +000054 }),
55 framework::dataset::make("InputInfo2", { TensorInfo(TensorShape(23U, 15U, 4U), 1, DataType::F32),
56 TensorInfo(TensorShape(22U, 127U, 5U), 1, DataType::F32),
57 TensorInfo(TensorShape(11U, 26U, 5U), 1, DataType::F32),
Usama Arifc63c3702019-03-21 11:49:25 +000058 TensorInfo(TensorShape(16U, 25U, 5U), 1, DataType::F32),
59 TensorInfo(TensorShape(35U, 10U, 5U), 1, DataType::F32)
Pablo Tello3dd5b682019-03-04 14:14:02 +000060 })),
61 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(23U, 30U, 5U), 1, DataType::F16),
62 TensorInfo(TensorShape(22U, 12U, 5U), 1, DataType::F32),
63 TensorInfo(TensorShape(11U, 7U, 5U), 1, DataType::F32),
Usama Arifc63c3702019-03-21 11:49:25 +000064 TensorInfo(TensorShape(16U, 50U, 5U), 1, DataType::F32),
65 TensorInfo(TensorShape(35U, 31U, 5U), 1, DataType::F32)
Pablo Tello3dd5b682019-03-04 14:14:02 +000066 })),
Usama Arifc63c3702019-03-21 11:49:25 +000067 framework::dataset::make("Expected", { false, false, false, true, true })),
Pablo Tello3dd5b682019-03-04 14:14:02 +000068 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
Georgios Pinitas4667ddd2020-07-13 21:21:33 +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());
Pablo Tello3dd5b682019-03-04 14:14:02 +000076 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(NEConcatenateLayer::validate(inputs_vector_info_raw, &output_info.clone()->set_is_resizable(true), 1));
Pablo Tello3dd5b682019-03-04 14:14:02 +000082 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
83}
84// clang-format on
85// *INDENT-ON*
86
87template <typename T>
88using NEHeightConcatenateLayerFixture = ConcatenateLayerValidationFixture<Tensor, ITensor, Accessor, NEConcatenateLayer, T>;
89
90TEST_SUITE(Float)
91TEST_SUITE(FP32)
92FIXTURE_DATA_TEST_CASE(RunSmall, NEHeightConcatenateLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
93 framework::dataset::make("DataType",
94 DataType::F32)),
95 framework::dataset::make("Axis", 1)))
96{
97 // Validate output
98 validate(Accessor(_target), _reference);
99}
100FIXTURE_DATA_TEST_CASE(RunLarge, NEHeightConcatenateLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
101 DataType::F32)),
102 framework::dataset::make("Axis", 1)))
103
104{
105 // Validate output
106 validate(Accessor(_target), _reference);
107}
108TEST_SUITE_END() // FP32
109TEST_SUITE_END() // Float
110
111TEST_SUITE(Quantized)
112TEST_SUITE(QASYMM8)
113FIXTURE_DATA_TEST_CASE(RunSmall, NEHeightConcatenateLayerFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
114 framework::dataset::make("DataType",
115 DataType::QASYMM8)),
116 framework::dataset::make("Axis", 1)))
117{
118 // Validate output
119 validate(Accessor(_target), _reference);
120}
Georgios Pinitas33843562019-12-10 13:33:18 +0000121TEST_SUITE_END() // QASYMM8
122
123TEST_SUITE(QASYMM8_SIGNED)
124FIXTURE_DATA_TEST_CASE(RunSmall, NEHeightConcatenateLayerFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
125 framework::dataset::make("DataType",
126 DataType::QASYMM8_SIGNED)),
127 framework::dataset::make("Axis", 1)))
Pablo Tello3dd5b682019-03-04 14:14:02 +0000128{
129 // Validate output
130 validate(Accessor(_target), _reference);
131}
Georgios Pinitas33843562019-12-10 13:33:18 +0000132TEST_SUITE_END() // QASYMM8_SIGNED
Pablo Tello3dd5b682019-03-04 14:14:02 +0000133TEST_SUITE_END() // Quantized
134
135TEST_SUITE_END()
136TEST_SUITE_END()
137} // namespace validation
138} // namespace test
139} // namespace arm_compute