-
Notifications
You must be signed in to change notification settings - Fork 772
Expand file tree
/
Copy pathtest_padv2_layer.cc
More file actions
123 lines (111 loc) · 4.51 KB
/
test_padv2_layer.cc
File metadata and controls
123 lines (111 loc) · 4.51 KB
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
// Tencent is pleased to support the open source community by making TNN 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 "test/unit_test/layer_test/layer_test.h"
#include "test/unit_test/unit_test_common.h"
#include "test/unit_test/utils/network_helpers.h"
#include "tnn/utils/dims_utils.h"
namespace TNN_NS {
class PadV2LayerTest : public LayerTest,
public ::testing::WithParamInterface<std::tuple<int, int, int, int, int, int, int, int, float>> {
};
INSTANTIATE_TEST_SUITE_P(LayerTest, PadV2LayerTest,
::testing::Combine(BASIC_BATCH_CHANNEL_SIZE,
// pad_w
testing::Values(0, 1, 2),
// pad_h
testing::Values(0, 1, 2),
// pad_c
testing::Values(0, 1, 2),
// pad_type
testing::Values(0, 1),
// dim size
testing::Values(3, 4, 5, 6),
// pad value
testing::Values(-FLT_MAX, 0, 2, FLT_MAX)));
TEST_P(PadV2LayerTest, PadV2Layer) {
// get param
int batch = std::get<0>(GetParam());
int channel = std::get<1>(GetParam());
int input_size = std::get<2>(GetParam());
int pad_w = std::get<3>(GetParam());
int pad_h = std::get<4>(GetParam());
int pad_c = std::get<5>(GetParam());
int pad_type = std::get<6>(GetParam());
int dim_count = std::get<7>(GetParam());
float value = std::get<8>(GetParam());
// insure pad is valid
if (pad_w >= input_size) {
pad_w = pad_w % input_size;
}
if (pad_h >= input_size) {
pad_h = pad_h % input_size;
}
// 目前 只有pad mode 为 const 时, 才支持在channel上进行pad
if ((pad_type == 1 || pad_type == 2) && (pad_c != 0)) {
GTEST_SKIP();
}
DeviceType dev = ConvertDeviceType(FLAGS_dt);
// only cuda, arm, opencl implements padv2 now
if (!(DEVICE_CUDA == dev || DEVICE_ARM == dev || DEVICE_OPENCL == dev || DEVICE_METAL == dev)) {
GTEST_SKIP();
}
// arm only support dims size 4 and 6
if (DEVICE_ARM == dev && (dim_count != 4 && dim_count != 6)) {
GTEST_SKIP();
}
// opnecl only support dims size 4
if (DEVICE_OPENCL == dev && dim_count != 4) {
GTEST_SKIP();
}
// metal only support dims size 4
if (DEVICE_METAL == dev && dim_count != 4) {
GTEST_SKIP();
}
if (dim_count == 6) {
// only arm support dims size 6
if (DEVICE_ARM != dev) {
GTEST_SKIP();
}
if (pad_type != 0) {
GTEST_SKIP();
}
// reduce test time
if (input_size >= 10) {
GTEST_SKIP();
}
}
// param
std::shared_ptr<PadLayerParam> param(new PadLayerParam());
param->name = "PadV2";
param->type = pad_type;
if (dim_count == 2) {
param->pads = {0, pad_c, 0, pad_c};
} else if (dim_count == 3) {
param->pads = {0, pad_c, pad_h, 0, pad_c, pad_h};
} else if (dim_count == 4) {
param->pads = {0, pad_c, pad_h, pad_w, 0, pad_c, pad_h, pad_w};
} else if (dim_count == 5) {
param->pads = {0, pad_c, pad_h, pad_w, pad_w, 0, pad_c, pad_h, pad_w, pad_w};
} else if (dim_count == 6) {
param->pads = {0, 0, 0, pad_h, 0, pad_w, 0, 0, 0, pad_h, 0, pad_w};
}
param->value = value;
// generate interpreter
std::vector<int> input_dims = {batch, channel};
while (input_dims.size() < dim_count)
input_dims.push_back(input_size);
auto interpreter = GenerateInterpreter("PadV2", {input_dims}, param);
Run(interpreter);
}
} // namespace TNN_NS