forked from Tencent/ncnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_reshape.cpp
206 lines (181 loc) · 6.59 KB
/
test_reshape.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Tencent is pleased to support the open source community by making ncnn available.
//
// Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
//
// Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
//
// https://opensource.org/licenses/BSD-3-Clause
//
// Unless required by applicable law or agreed to in writing, software distributed
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
#include "layer/reshape.h"
#include "testutil.h"
static int test_reshape(const ncnn::Mat& a, int outw, int outh, int outd, int outc)
{
ncnn::ParamDict pd;
pd.set(0, outw); // w
pd.set(1, outh); // h
pd.set(11, outd); // d
pd.set(2, outc); // c
std::vector<ncnn::Mat> weights(0);
int ret = test_layer<ncnn::Reshape>("Reshape", pd, weights, a);
if (ret != 0)
{
fprintf(stderr, "test_reshape failed a.dims=%d a=(%d %d %d %d) outw=%d outh=%d outd=%d outc=%d\n", a.dims, a.w, a.h, a.d, a.c, outw, outh, outd, outc);
}
return ret;
}
static int test_reshape_0()
{
ncnn::Mat a = RandomMat(3, 8, 5, 32);
return 0
|| test_reshape(a, 5, 8, 3, 32)
|| test_reshape(a, 3, 8, 32, 5)
|| test_reshape(a, 32, 5, 8, 3)
|| test_reshape(a, 4, 3, 16, -1)
|| test_reshape(a, 6, 16, -1, 2)
|| test_reshape(a, 4, -1, 8, 8)
|| test_reshape(a, -1, 16, 6, 2)
|| test_reshape(a, 16, 6, -233, -1)
|| test_reshape(a, 8, -1, -233, 8)
|| test_reshape(a, -1, 6, -233, 16)
|| test_reshape(a, 8, -1, -233, -233)
|| test_reshape(a, -1, 6, -233, -233)
|| test_reshape(a, -1, -233, -233, -233);
}
static int test_reshape_1()
{
ncnn::Mat a = RandomMat(4, 5, 12, 26);
return 0
|| test_reshape(a, 12, 5, 4, 26)
|| test_reshape(a, 4, 26, 12, 5)
|| test_reshape(a, 13, 5, 12, 8)
|| test_reshape(a, 2, 10, 8, -1)
|| test_reshape(a, 13, 4, -1, 10)
|| test_reshape(a, 13, -1, 12, 4)
|| test_reshape(a, -1, 26, 3, 16)
|| test_reshape(a, 13, 4, -233, -1)
|| test_reshape(a, 26, -1, -233, 12)
|| test_reshape(a, -1, 13, -233, 16)
|| test_reshape(a, 12, -1, -233, -233)
|| test_reshape(a, -1, 24, -233, -233)
|| test_reshape(a, -1, -233, -233, -233);
}
static int test_reshape_2()
{
ncnn::Mat a = RandomMat(6, 7, 32);
return 0
|| test_reshape(a, 6, 8, 4, 7)
|| test_reshape(a, 2, 6, 7, 16)
|| test_reshape(a, 7, 6, -233, 32)
|| test_reshape(a, 6, 32, -233, 7)
|| test_reshape(a, 32, 7, -233, 6)
|| test_reshape(a, 2, 6, -233, -1)
|| test_reshape(a, -1, 8, -233, 2)
|| test_reshape(a, -1, 4, -233, -233)
|| test_reshape(a, 8, -1, -233, -233)
|| test_reshape(a, 32, 42, -233, -233)
|| test_reshape(a, -1, -233, -233, -233);
}
static int test_reshape_3()
{
ncnn::Mat a = RandomMat(4, 14, 26);
return 0
|| test_reshape(a, 13, 4, 2, 14)
|| test_reshape(a, 1, 13, 7, 16)
|| test_reshape(a, 14, 8, -233, 13)
|| test_reshape(a, 4, 13, -233, 28)
|| test_reshape(a, 13, 14, -233, 8)
|| test_reshape(a, 2, 7, -233, -1)
|| test_reshape(a, -1, 13, -233, 2)
|| test_reshape(a, -1, 4, -233, -233)
|| test_reshape(a, 8, -1, -233, -233)
|| test_reshape(a, 16, 91, -233, -233)
|| test_reshape(a, -1, -233, -233, -233);
}
static int test_reshape_4()
{
ncnn::Mat a = RandomMat(14, 32);
return 0
|| test_reshape(a, 2, 7, 2, 16)
|| test_reshape(a, 16, 1, 7, 4)
|| test_reshape(a, 7, 2, -233, 32)
|| test_reshape(a, 4, 16, -233, 7)
|| test_reshape(a, 16, 14, -233, 2)
|| test_reshape(a, 2, 4, -233, -1)
|| test_reshape(a, -1, 8, -233, 2)
|| test_reshape(a, 28, 16, -233, -233)
|| test_reshape(a, -1, 14, -233, -233)
|| test_reshape(a, 16, -1, -233, -233)
|| test_reshape(a, -1, -233, -233, -233);
}
static int test_reshape_5()
{
ncnn::Mat a = RandomMat(12, 28);
return 0
|| test_reshape(a, 4, 3, 2, 14)
|| test_reshape(a, 1, 3, 14, 8)
|| test_reshape(a, 7, 2, -233, 24)
|| test_reshape(a, 2, 24, -233, 7)
|| test_reshape(a, 12, 14, -233, 2)
|| test_reshape(a, 2, 4, -233, -1)
|| test_reshape(a, -1, 4, -233, 2)
|| test_reshape(a, 21, 16, -233, -233)
|| test_reshape(a, -1, 14, -233, -233)
|| test_reshape(a, 3, -1, -233, -233)
|| test_reshape(a, -1, -233, -233, -233);
}
static int test_reshape_6()
{
ncnn::Mat a = RandomMat(240);
return 0
|| test_reshape(a, 1, 1, 1, 240)
|| test_reshape(a, 10, 1, 1, 24)
|| test_reshape(a, 3, 5, -233, 16)
|| test_reshape(a, 3, 8, -233, 10)
|| test_reshape(a, 8, 5, -233, 6)
|| test_reshape(a, 2, 5, -233, -1)
|| test_reshape(a, -1, 5, -233, 4)
|| test_reshape(a, 8, 30, -233, -233)
|| test_reshape(a, -1, 2, -233, -233)
|| test_reshape(a, 24, -1, -233, -233)
|| test_reshape(a, -1, -233, -233, -233);
}
static int test_reshape_7()
{
ncnn::Mat a = RandomMat(210);
return 0
|| test_reshape(a, 1, 1, 210, 1)
|| test_reshape(a, 5, 2, 7, 3)
|| test_reshape(a, 3, 5, -233, 14)
|| test_reshape(a, 3, 14, -233, 5)
|| test_reshape(a, 14, 5, -233, 3)
|| test_reshape(a, 2, 5, -233, -1)
|| test_reshape(a, -1, 5, -233, 2)
|| test_reshape(a, 6, 35, -233, -233)
|| test_reshape(a, -1, 7, -233, -233)
|| test_reshape(a, 21, -1, -233, -233)
|| test_reshape(a, -1, -233, -233, -233);
}
static int test_reshape_8()
{
ncnn::Mat a = RandomMat(1, 19, 15, 18);
return test_reshape(a, 19, 15, -233, 18);
}
int main()
{
SRAND(7767517);
return 0
|| test_reshape_0()
|| test_reshape_1()
|| test_reshape_2()
|| test_reshape_3()
|| test_reshape_4()
|| test_reshape_5()
|| test_reshape_6()
|| test_reshape_7()
|| test_reshape_8();
}