blob: 690e401757ed4a1c13cb5dca43658781783c0ad0 [file] [log] [blame]
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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#ifndef __ARM_COMPUTE_TEST_SHAPE_DATASETS_H__
25#define __ARM_COMPUTE_TEST_SHAPE_DATASETS_H__
26
27#include "arm_compute/core/TensorShape.h"
28#include "framework/datasets/Datasets.h"
29
30#include <type_traits>
31
32namespace arm_compute
33{
34namespace test
35{
36namespace datasets
37{
38/** Data set containing one 1D tensor shape. */
39class Small1DShape final : public framework::dataset::SingletonDataset<TensorShape>
40{
41public:
42 Small1DShape()
43 : SingletonDataset("Shape", TensorShape{ 256U })
44 {
45 }
46};
47
48/** Parent type for all for shape datasets. */
49using ShapeDataset = framework::dataset::ContainerDataset<std::vector<TensorShape>>;
50
51/** Data set containing two small 2D tensor shapes. */
52class Small2DShapes final : public ShapeDataset
53{
54public:
55 Small2DShapes()
56 : ShapeDataset("Shape",
57 {
58 TensorShape{ 5U, 5U },
59 TensorShape{ 640U, 480U }
60 })
61 {
62 }
63};
64
65/** Data set containing small tensor shapes. */
66class SmallShapes final : public ShapeDataset
67{
68public:
69 SmallShapes()
70 : ShapeDataset("Shape",
71 {
72 TensorShape{ 7U, 7U },
73 TensorShape{ 27U, 13U, 2U },
74 TensorShape{ 128U, 64U, 1U, 3U }
75 })
76 {
77 }
78};
79
80/** Data set containing large tensor shapes. */
81class LargeShapes final : public ShapeDataset
82{
83public:
84 LargeShapes()
85 : ShapeDataset("Shape",
86 {
87 TensorShape{ 1920U, 1080U },
88 TensorShape{ 1245U, 652U, 1U, 3U },
89 TensorShape{ 4160U, 3120U }
90 })
91 {
92 }
93};
94
95/** Data set containing two 2D large tensor shapes. */
96class Large2DShapes final : public ShapeDataset
97{
98public:
99 Large2DShapes()
100 : ShapeDataset("Shape",
101 {
102 TensorShape{ 1920U, 1080U },
103 TensorShape{ 4160U, 3120U }
104 })
105 {
106 }
107};
108} // namespace datasets
109} // namespace test
110} // namespace arm_compute
111#endif /* __ARM_COMPUTE_TEST_SHAPE_DATASETS_H__ */