Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
c39b771a
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c39b771a
编写于
9月 12, 2017
作者:
T
tensor-tang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add test cases for mkldnn_conv
上级
f3a23b68
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
78 addition
and
0 deletion
+78
-0
paddle/gserver/tests/test_MKLDNN.cpp
paddle/gserver/tests/test_MKLDNN.cpp
+78
-0
未找到文件。
paddle/gserver/tests/test_MKLDNN.cpp
浏览文件 @
c39b771a
...
...
@@ -17,6 +17,7 @@ limitations under the License. */
#include <vector>
#include "MKLDNNTester.h"
#include "ModelConfig.pb.h"
#include "paddle/math/MathUtils.h"
using
namespace
paddle
;
// NOLINT
...
...
@@ -63,6 +64,83 @@ TEST(MKLDNNLayer, FcLayer) {
testFcLayer
({
/*bs*/
15
,
/*ic*/
3
,
/*oc*/
6
,
/*ih*/
16
,
/*iw*/
16
});
}
struct
testConvDesc
{
int
bs
,
gp
;
int
ic
,
ih
,
iw
;
int
oc
,
oh
,
ow
;
int
fh
,
fw
;
int
ph
,
pw
;
int
sh
,
sw
;
int
dh
,
dw
;
};
void
testConvLayer
(
const
testConvDesc
&
pm
)
{
const
std
::
string
compareTypes
[]
=
{
"mkldnn_conv"
,
"exconv"
};
TestConfig
cfg
;
cfg
.
layerConfig
.
set_type
(
compareTypes
[
0
]);
cfg
.
layerConfig
.
set_num_filters
(
pm
.
oc
);
cfg
.
layerConfig
.
set_size
(
pm
.
oc
*
pm
.
oh
*
pm
.
ow
);
// cfg.layerConfig.set_partial_sum(1); // TODO: check it
cfg
.
layerConfig
.
set_shared_biases
(
true
);
cfg
.
inputDefs
.
push_back
(
{
INPUT_DATA
,
"layer_0"
,
/* size of input layer= */
size_t
(
pm
.
ic
*
pm
.
ih
*
pm
.
iw
),
/* size of weight= */
size_t
(
pm
.
oc
*
pm
.
ic
*
pm
.
fh
*
pm
.
fw
/
pm
.
gp
)});
LayerInputConfig
*
input
=
cfg
.
layerConfig
.
add_inputs
();
ConvConfig
*
conv
=
input
->
mutable_conv_conf
();
conv
->
set_groups
(
pm
.
gp
);
conv
->
set_img_size
(
pm
.
iw
);
conv
->
set_img_size_y
(
pm
.
ih
);
conv
->
set_output_x
(
pm
.
ow
);
conv
->
set_output_y
(
pm
.
oh
);
conv
->
set_filter_size
(
pm
.
fw
);
conv
->
set_filter_size_y
(
pm
.
fh
);
conv
->
set_channels
(
pm
.
ic
);
conv
->
set_padding
(
pm
.
pw
);
conv
->
set_padding_y
(
pm
.
ph
);
conv
->
set_stride
(
pm
.
sw
);
conv
->
set_stride_y
(
pm
.
sh
);
conv
->
set_dilation
(
pm
.
dw
);
conv
->
set_dilation_y
(
pm
.
dh
);
conv
->
set_caffe_mode
(
true
);
conv
->
set_filter_channels
(
conv
->
channels
()
/
conv
->
groups
());
CHECK_EQ
(
conv
->
filter_channels
()
*
pm
.
gp
,
conv
->
channels
())
<<
"it is indivisible"
;
int
fh
=
(
pm
.
fh
-
1
)
*
pm
.
dh
+
1
;
int
fw
=
(
pm
.
fw
-
1
)
*
pm
.
dw
+
1
;
int
ow
=
outputSize
(
pm
.
iw
,
fw
,
pm
.
pw
,
pm
.
sw
,
true
);
int
oh
=
outputSize
(
pm
.
ih
,
fh
,
pm
.
ph
,
pm
.
sh
,
true
);
CHECK_EQ
(
ow
,
pm
.
ow
)
<<
"output size check failed"
;
CHECK_EQ
(
oh
,
pm
.
oh
)
<<
"output size check failed"
;
MKLDNNTester
tester
;
for
(
auto
biasSize
:
{
pm
.
oc
,
0
})
{
cfg
.
biasSize
=
biasSize
;
TestConfig
ref
=
cfg
;
ref
.
layerConfig
.
set_type
(
compareTypes
[
1
]);
for
(
auto
bs
:
{
pm
.
bs
,
1
})
{
tester
.
run
(
cfg
,
ref
,
bs
,
pm
.
ih
,
pm
.
iw
);
}
}
}
TEST
(
MKLDNNLayer
,
ConvLayer
)
{
/* bs, gp, ic, ih, iw, oc, oh, ow, fh, fw, ph, pw, sh, sw, dh, dw */
testConvLayer
({
2
,
1
,
3
,
32
,
32
,
16
,
32
,
32
,
3
,
3
,
1
,
1
,
1
,
1
,
1
,
1
});
testConvLayer
({
2
,
1
,
8
,
16
,
16
,
8
,
16
,
16
,
3
,
3
,
1
,
1
,
1
,
1
,
1
,
1
});
testConvLayer
({
3
,
1
,
16
,
32
,
32
,
3
,
32
,
32
,
3
,
3
,
1
,
1
,
1
,
1
,
1
,
1
});
testConvLayer
({
8
,
1
,
16
,
18
,
18
,
32
,
18
,
18
,
3
,
3
,
1
,
1
,
1
,
1
,
1
,
1
});
testConvLayer
({
16
,
1
,
1
,
42
,
31
,
32
,
23
,
11
,
4
,
5
,
3
,
2
,
2
,
3
,
1
,
1
});
testConvLayer
({
2
,
1
,
8
,
16
,
16
,
8
,
8
,
8
,
3
,
3
,
1
,
1
,
2
,
2
,
1
,
1
});
testConvLayer
({
3
,
1
,
8
,
13
,
13
,
8
,
7
,
7
,
3
,
3
,
1
,
1
,
2
,
2
,
1
,
1
});
// with groups
testConvLayer
({
2
,
2
,
4
,
5
,
5
,
8
,
5
,
5
,
3
,
3
,
1
,
1
,
1
,
1
,
1
,
1
});
testConvLayer
({
2
,
3
,
3
,
5
,
5
,
3
,
5
,
5
,
3
,
3
,
1
,
1
,
1
,
1
,
1
,
1
});
testConvLayer
({
4
,
4
,
16
,
3
,
3
,
16
,
3
,
3
,
3
,
3
,
1
,
1
,
1
,
1
,
1
,
1
});
}
// TODO(TJ): add branch test
int
main
(
int
argc
,
char
**
argv
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录