blob: 14f7851621ba312d23658984a5bb7727dd979d6a [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{
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010038/** Data set containing 1D tensor shapes. */
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010039class 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
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010051/** Data set containing small 2D tensor shapes. */
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010052class Small2DShapes final : public ShapeDataset
53{
54public:
55 Small2DShapes()
56 : ShapeDataset("Shape",
57 {
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010058 TensorShape{ 7U, 7U },
59 TensorShape{ 27U, 13U },
60 TensorShape{ 128U, 64U }
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010061 })
62 {
63 }
64};
65
66/** Data set containing small tensor shapes. */
67class SmallShapes final : public ShapeDataset
68{
69public:
70 SmallShapes()
71 : ShapeDataset("Shape",
72 {
73 TensorShape{ 7U, 7U },
74 TensorShape{ 27U, 13U, 2U },
75 TensorShape{ 128U, 64U, 1U, 3U }
76 })
77 {
78 }
79};
80
81/** Data set containing large tensor shapes. */
82class LargeShapes final : public ShapeDataset
83{
84public:
85 LargeShapes()
86 : ShapeDataset("Shape",
87 {
88 TensorShape{ 1920U, 1080U },
89 TensorShape{ 1245U, 652U, 1U, 3U },
90 TensorShape{ 4160U, 3120U }
91 })
92 {
93 }
94};
95
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010096/** Data set containing large 2D tensor shapes. */
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010097class Large2DShapes final : public ShapeDataset
98{
99public:
100 Large2DShapes()
101 : ShapeDataset("Shape",
102 {
103 TensorShape{ 1920U, 1080U },
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100104 TensorShape{ 1245U, 652U },
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100105 TensorShape{ 4160U, 3120U }
106 })
107 {
108 }
109};
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100110
111/** Data set containing small tensor shapes for direct convolution. */
112class SmallDirectConvolutionShapes final : public ShapeDataset
113{
114public:
115 SmallDirectConvolutionShapes()
116 : ShapeDataset("InputShape",
117 {
118 TensorShape{ 3U, 3U, 3U, 2U, 4U, 5U },
119 TensorShape{ 32U, 37U, 3U },
120 TensorShape{ 13U, 15U, 8U, 3U }
121 })
122 {
123 }
124};
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100125} // namespace datasets
126} // namespace test
127} // namespace arm_compute
128#endif /* __ARM_COMPUTE_TEST_SHAPE_DATASETS_H__ */