blob: 1b355ae17d3060057e49dc3fbce6d4108088f0d8 [file] [log] [blame]
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +01001/*
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +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"
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +010025#include "arm_compute/runtime/NEON/functions/NEConcatenateLayer.h"
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010026#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010028#include "tests/NEON/Accessor.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 Spyrou9f15c5e2019-04-03 19:48:54 +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(NEON)
43TEST_SUITE(DepthConcatenateLayer)
44
Georgios Pinitasae54e022018-07-16 15:41:27 +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;
71 for(auto &input : inputs_vector_info)
72 {
73 inputs_vector_info_raw.emplace_back(&input);
74 }
75
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +010076 bool is_valid = bool(NEConcatenateLayer::validate(inputs_vector_info_raw, &output_info.clone()->set_is_resizable(false), DataLayoutDimension::CHANNEL));
Georgios Pinitasae54e022018-07-16 15:41:27 +010077 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
78}
79// clang-format on
80// *INDENT-ON*
81
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010082template <typename T>
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +010083using NEDepthConcatenateLayerFixture = ConcatenateLayerValidationFixture<Tensor, ITensor, Accessor, NEConcatenateLayer, T>;
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010084
85TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000086#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010087TEST_SUITE(FP16)
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +010088FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthConcatenateLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
89 framework::dataset::make("DataType",
90 DataType::F16)),
91 framework::dataset::make("Axis", 2)))
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010092{
93 // Validate output
94 validate(Accessor(_target), _reference);
95}
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +010096FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthConcatenateLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
97 DataType::F16)),
98 framework::dataset::make("Axis", 2)))
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010099{
100 // Validate output
101 validate(Accessor(_target), _reference);
102}
103TEST_SUITE_END()
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000104#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100105
106TEST_SUITE(FP32)
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +0100107FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthConcatenateLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small3DShapes(), datasets::Tiny4DShapes()),
108 framework::dataset::make("DataType",
109 DataType::F32)),
110 framework::dataset::make("Axis", 2)))
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100111{
112 // Validate output
113 validate(Accessor(_target), _reference);
114}
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +0100115FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthConcatenateLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
116 DataType::F32)),
117 framework::dataset::make("Axis", 2)))
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100118{
119 // Validate output
120 validate(Accessor(_target), _reference);
121}
122TEST_SUITE_END()
123TEST_SUITE_END()
124
Georgios Pinitasae54e022018-07-16 15:41:27 +0100125TEST_SUITE(Quantized)
126TEST_SUITE(QASYMM8)
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +0100127FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small3DShapes(), datasets::Tiny4DShapes()),
128 framework::dataset::make("DataType",
129 DataType::QASYMM8)),
130 framework::dataset::make("Axis", 2)))
Georgios Pinitasae54e022018-07-16 15:41:27 +0100131{
132 // Validate output
133 validate(Accessor(_target), _reference);
134}
Michalis Spyrou9f15c5e2019-04-03 19:48:54 +0100135FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(),
136 framework::dataset::make("DataType",
137 DataType::QASYMM8)),
138 framework::dataset::make("Axis", 2)))
Georgios Pinitasae54e022018-07-16 15:41:27 +0100139{
140 // Validate output
141 validate(Accessor(_target), _reference);
142}
143TEST_SUITE_END()
144TEST_SUITE_END()
145
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100146TEST_SUITE_END()
147TEST_SUITE_END()
148} // namespace validation
149} // namespace test
150} // namespace arm_compute