blob: 38bef51ed3338be3739e14d4867ae8dff5a86ee1 [file] [log] [blame]
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +01001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +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/NEON/functions/NEReorgLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28
29#include "tests/NEON/Accessor.h"
30#include "tests/PaddingCalculator.h"
Gian Marco Iodice477531c2018-08-21 17:53:38 +010031#include "tests/datasets/ReorgLayerDataset.h"
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +010032#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
35#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/ReorgLayerFixture.h"
37
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44TEST_SUITE(NEON)
45TEST_SUITE(ReorgLayer)
46
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +010047// *INDENT-OFF*
48// clang-format off
49DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
Gian Marco Iodice477531c2018-08-21 17:53:38 +010050 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(10U, 12U, 1U, 2U), 1, DataType::S64), // Wrong output tensor
51 TensorInfo(TensorShape(10U, 12U, 1U, 2U), 1, DataType::F32),
52 TensorInfo(TensorShape(10U, 12U, 1U, 2U), 1, DataType::F32), // Wrong output tensor
53 TensorInfo(TensorShape(3U, 12U, 4U, 2U), 1, DataType::F32),
54 TensorInfo(TensorShape(3U, 12U, 4U, 2U), 1, DataType::F32), // Wrong data type
55 }),
56 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(3U, 4U, 10U, 2U), 1, DataType::S64),
57 TensorInfo(TensorShape(5U, 6U, 4U, 2U), 1, DataType::F32),
58 TensorInfo(TensorShape(5U, 6U, 2, 2U), 1, DataType::F32),
59 TensorInfo(TensorShape(1U, 4U, 36U, 2U), 1, DataType::F32),
60 TensorInfo(TensorShape(1U, 4U, 36U, 2U), 1, DataType::F16),
61 })),
62 framework::dataset::make("Stride", { 2, 2, 4, 3 })),
63 framework::dataset::make("Expected", { false, true, false, true, false })),
64 input_info, output_info, stride, expected)
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +010065{
Gian Marco Iodice477531c2018-08-21 17:53:38 +010066 bool status = bool(NEReorgLayer::validate(&input_info, &output_info, stride));
67 ARM_COMPUTE_EXPECT(status == expected, framework::LogLevel::ERRORS);
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +010068}
69// clang-format on
70// *INDENT-ON*
71
72template <typename T>
73using NEReorgLayerFixture = ReorgLayerValidationFixture<Tensor, Accessor, NEReorgLayer, T>;
74
Gian Marco Iodice477531c2018-08-21 17:53:38 +010075TEST_SUITE(S32)
76FIXTURE_DATA_TEST_CASE(RunSmall, NEReorgLayerFixture<int32_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallReorgLayerDataset(), framework::dataset::make("DataType",
77 DataType::S32)),
78 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +010079{
80 // Validate output
81 validate(Accessor(_target), _reference);
82}
83
Gian Marco Iodice477531c2018-08-21 17:53:38 +010084FIXTURE_DATA_TEST_CASE(RunLarge, NEReorgLayerFixture<int32_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeReorgLayerDataset(), framework::dataset::make("DataType",
85 DataType::S32)),
86 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +010087{
88 // Validate output
89 validate(Accessor(_target), _reference);
90}
Gian Marco Iodice477531c2018-08-21 17:53:38 +010091TEST_SUITE_END() // S32
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +010092
Gian Marco Iodice477531c2018-08-21 17:53:38 +010093TEST_SUITE(S16)
94FIXTURE_DATA_TEST_CASE(RunSmall, NEReorgLayerFixture<int16_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallReorgLayerDataset(), framework::dataset::make("DataType",
95 DataType::S16)),
96 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +010097{
98 // Validate output
99 validate(Accessor(_target), _reference);
100}
101
Gian Marco Iodice477531c2018-08-21 17:53:38 +0100102FIXTURE_DATA_TEST_CASE(RunLarge, NEReorgLayerFixture<int16_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeReorgLayerDataset(), framework::dataset::make("DataType",
103 DataType::S16)),
104 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100105{
106 // Validate output
107 validate(Accessor(_target), _reference);
108}
Gian Marco Iodice477531c2018-08-21 17:53:38 +0100109TEST_SUITE_END() // S16
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100110
Gian Marco Iodice477531c2018-08-21 17:53:38 +0100111TEST_SUITE(S8)
112FIXTURE_DATA_TEST_CASE(RunSmall, NEReorgLayerFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallReorgLayerDataset(), framework::dataset::make("DataType",
113 DataType::S8)),
114 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100115{
116 // Validate output
117 validate(Accessor(_target), _reference);
118}
119
Gian Marco Iodice477531c2018-08-21 17:53:38 +0100120FIXTURE_DATA_TEST_CASE(RunLarge, NEReorgLayerFixture<int8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeReorgLayerDataset(), framework::dataset::make("DataType", DataType::S8)),
121 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100122{
123 // Validate output
124 validate(Accessor(_target), _reference);
125}
Gian Marco Iodice477531c2018-08-21 17:53:38 +0100126TEST_SUITE_END() // S8
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100127
128TEST_SUITE_END() // ReorgLayer
Sheri Zhangac6499a2021-02-10 15:32:38 +0000129TEST_SUITE_END() // Neon
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100130} // namespace validation
131} // namespace test
132} // namespace arm_compute