Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
5a381956
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看板
提交
5a381956
编写于
11月 09, 2017
作者:
T
Tao Luo
提交者:
Yi Wang
11月 08, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
reduce elasped time of test_LayerGrad (#5478)
上级
797249bc
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
8 deletion
+8
-8
paddle/gserver/tests/test_LayerGrad.cpp
paddle/gserver/tests/test_LayerGrad.cpp
+8
-8
未找到文件。
paddle/gserver/tests/test_LayerGrad.cpp
浏览文件 @
5a381956
...
...
@@ -53,7 +53,7 @@ TEST(Operator, dot_mul) {
TEST
(
Projection
,
context
)
{
for
(
auto
contextStart
:
{
-
5
,
-
3
,
-
1
,
0
,
3
})
{
for
(
auto
contextLength
:
{
1
,
2
,
5
,
7
})
{
for
(
auto
batchSize
:
{
1
,
2
,
5
,
20
,
50
})
{
for
(
auto
batchSize
:
{
1
,
2
,
5
,
20
})
{
for
(
auto
trainablePadding
:
{
false
,
true
})
{
LOG
(
INFO
)
<<
" contextStart="
<<
contextStart
<<
" contextLength="
<<
contextLength
...
...
@@ -585,14 +585,14 @@ TEST(Layer, maxoutLayer) {
}
void
testFcLayer
(
string
format
,
size_t
nnz
)
{
TestConfig
config
;
config
.
biasSize
=
4096
;
config
.
biasSize
=
1024
;
config
.
layerConfig
.
set_type
(
"fc"
);
config
.
layerConfig
.
set_size
(
4096
);
config
.
layerConfig
.
set_size
(
1024
);
config
.
layerConfig
.
set_active_type
(
"sigmoid"
);
config
.
layerConfig
.
set_drop_rate
(
0.1
);
config
.
inputDefs
.
push_back
(
{
INPUT_DATA
,
"layer_0"
,
8192
,
nnz
,
ParaSparse
(
format
)});
{
INPUT_DATA
,
"layer_0"
,
2048
,
nnz
,
ParaSparse
(
format
)});
config
.
layerConfig
.
add_inputs
();
LOG
(
INFO
)
<<
config
.
inputDefs
[
0
].
sparse
.
sparse
<<
" "
...
...
@@ -609,9 +609,9 @@ void testFcLayer(string format, size_t nnz) {
}
TEST
(
Layer
,
fcLayer
)
{
testFcLayer
(
""
,
4096
*
4096
*
2
);
testFcLayer
(
"csc"
,
4096
*
4
0
);
testFcLayer
(
"csr"
,
4096
*
4
0
);
testFcLayer
(
""
,
1024
*
1024
*
2
);
testFcLayer
(
"csc"
,
1024
*
1
0
);
testFcLayer
(
"csr"
,
1024
*
1
0
);
}
TEST
(
Layer
,
SelectiveFullyConnectedLayer
)
{
...
...
@@ -1995,7 +1995,7 @@ TEST(Layer, multibox_loss) {
TEST
(
Layer
,
TransLayer
)
{
TestConfig
config
;
const
int
height
=
128
;
const
int
width
=
1028
;
const
int
width
=
256
;
config
.
layerConfig
.
set_type
(
"trans"
);
config
.
layerConfig
.
set_size
(
width
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录