blob: 3edf136cab399897adb56899e9901ec286687b60 [file] [log] [blame]
Georgios Pinitasae54e022018-07-16 15:41:27 +01001/*
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +00002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitasae54e022018-07-16 15:41:27 +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"
Pablo Tello3dd5b682019-03-04 14:14:02 +000025#include "arm_compute/runtime/NEON/functions/NEConcatenateLayer.h"
Georgios Pinitasae54e022018-07-16 15:41:27 +010026#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"
Pablo Tello3dd5b682019-03-04 14:14:02 +000034#include "tests/validation/fixtures/ConcatenateLayerFixture.h"
Georgios Pinitasae54e022018-07-16 15:41:27 +010035
36namespace arm_compute
37{
38namespace test
39{
40namespace validation
41{
42TEST_SUITE(NEON)
43TEST_SUITE(WidthConcatenateLayer)
44// *INDENT-OFF*
45// clang-format off
46DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
47 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)
Georgios Pinitasae54e022018-07-16 15:41:27 +010052 }),
53 framework::dataset::make("InputInfo2", { TensorInfo(TensorShape(24U, 27U, 4U), 1, DataType::F32),
54 TensorInfo(TensorShape(52U, 27U, 5U), 1, DataType::F32),
55 TensorInfo(TensorShape(52U, 27U, 5U), 1, DataType::F32),
Usama Arifc63c3702019-03-21 11:49:25 +000056 TensorInfo(TensorShape(16U, 27U, 5U), 1, DataType::F32),
57 TensorInfo(TensorShape(10U, 35U, 5U), 1, DataType::F32)
Georgios Pinitasae54e022018-07-16 15:41:27 +010058 })),
59 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(47U, 27U, 5U), 1, DataType::F16),
60 TensorInfo(TensorShape(75U, 12U, 5U), 1, DataType::F32),
61 TensorInfo(TensorShape(11U, 27U, 5U), 1, DataType::F32),
Usama Arifc63c3702019-03-21 11:49:25 +000062 TensorInfo(TensorShape(32U, 27U, 5U), 1, DataType::F32),
63 TensorInfo(TensorShape(31U, 35U, 5U), 1, DataType::F32)
Georgios Pinitasae54e022018-07-16 15:41:27 +010064 })),
Usama Arifc63c3702019-03-21 11:49:25 +000065 framework::dataset::make("Expected", { false, false, false, true, true })),
Georgios Pinitasae54e022018-07-16 15:41:27 +010066 input_info1, input_info2, output_info,expected)
67{
68 std::vector<TensorInfo> inputs_vector_info;
69 inputs_vector_info.emplace_back(std::move(input_info1));
70 inputs_vector_info.emplace_back(std::move(input_info2));
71
72 std::vector<ITensorInfo *> inputs_vector_info_raw;
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010073 inputs_vector_info_raw.reserve(inputs_vector_info.size());
Georgios Pinitasae54e022018-07-16 15:41:27 +010074 for(auto &input : inputs_vector_info)
75 {
76 inputs_vector_info_raw.emplace_back(&input);
77 }
78
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010079 bool is_valid = bool(NEConcatenateLayer::validate(inputs_vector_info_raw, &output_info.clone()->set_is_resizable(true), 0));
Georgios Pinitasae54e022018-07-16 15:41:27 +010080 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
81}
82// clang-format on
83// *INDENT-ON*
Georgios Pinitasae54e022018-07-16 15:41:27 +010084template <typename T>
Pablo Tello3dd5b682019-03-04 14:14:02 +000085using NEWidthConcatenateLayerFixture = ConcatenateLayerValidationFixture<Tensor, ITensor, Accessor, NEConcatenateLayer, T>;
Georgios Pinitasae54e022018-07-16 15:41:27 +010086
87TEST_SUITE(Float)
88TEST_SUITE(FP32)
Pablo Tello3dd5b682019-03-04 14:14:02 +000089FIXTURE_DATA_TEST_CASE(RunSmall, NEWidthConcatenateLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +000090 framework::dataset::make("DataType",
Pablo Tello3dd5b682019-03-04 14:14:02 +000091 DataType::F32)),
92 framework::dataset::make("Axis", 0)))
93
Georgios Pinitasae54e022018-07-16 15:41:27 +010094{
95 // Validate output
96 validate(Accessor(_target), _reference);
97}
Pablo Tello3dd5b682019-03-04 14:14:02 +000098FIXTURE_DATA_TEST_CASE(RunLarge, NEWidthConcatenateLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::ConcatenateLayerShapes(), framework::dataset::make("DataType",
99 DataType::F32)),
100 framework::dataset::make("Axis", 0)))
101
Georgios Pinitasae54e022018-07-16 15:41:27 +0100102{
103 // Validate output
104 validate(Accessor(_target), _reference);
105}
106TEST_SUITE_END()
107TEST_SUITE_END()
108
109TEST_SUITE(Quantized)
110TEST_SUITE(QASYMM8)
Pablo Tello3dd5b682019-03-04 14:14:02 +0000111FIXTURE_DATA_TEST_CASE(RunSmall, NEWidthConcatenateLayerFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +0000112 framework::dataset::make("DataType",
Pablo Tello3dd5b682019-03-04 14:14:02 +0000113 DataType::QASYMM8)),
114 framework::dataset::make("Axis", 0)))
115
Georgios Pinitasae54e022018-07-16 15:41:27 +0100116{
117 // Validate output
118 validate(Accessor(_target), _reference);
119}
Georgios Pinitas33843562019-12-10 13:33:18 +0000120TEST_SUITE_END()
121
122TEST_SUITE(QASYMM8_SIGNED)
123FIXTURE_DATA_TEST_CASE(RunSmall, NEWidthConcatenateLayerFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(concat(datasets::Small2DShapes(), datasets::Tiny4DShapes()),
124 framework::dataset::make("DataType",
125 DataType::QASYMM8_SIGNED)),
126 framework::dataset::make("Axis", 0)))
Pablo Tello3dd5b682019-03-04 14:14:02 +0000127
Georgios Pinitasae54e022018-07-16 15:41:27 +0100128{
129 // Validate output
130 validate(Accessor(_target), _reference);
131}
132TEST_SUITE_END()
133TEST_SUITE_END()
134
135TEST_SUITE_END()
136TEST_SUITE_END()
137} // namespace validation
138} // namespace test
139} // namespace arm_compute