Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
6bf796df
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6bf796df
编写于
3月 21, 2019
作者:
D
dongdaxiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refine print fetch list
上级
1ec8fab7
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
19 addition
and
18 deletion
+19
-18
paddle/fluid/framework/downpour_worker.cc
paddle/fluid/framework/downpour_worker.cc
+2
-2
paddle/fluid/framework/hogwild_worker.cc
paddle/fluid/framework/hogwild_worker.cc
+4
-6
paddle/fluid/framework/multi_trainer.cc
paddle/fluid/framework/multi_trainer.cc
+1
-0
paddle/fluid/framework/trainer_desc.proto
paddle/fluid/framework/trainer_desc.proto
+1
-1
paddle/fluid/platform/lodtensor_printer.cc
paddle/fluid/platform/lodtensor_printer.cc
+3
-5
python/paddle/fluid/executor.py
python/paddle/fluid/executor.py
+3
-0
python/paddle/fluid/trainer_desc.py
python/paddle/fluid/trainer_desc.py
+5
-4
未找到文件。
paddle/fluid/framework/downpour_worker.cc
浏览文件 @
6bf796df
...
...
@@ -311,6 +311,7 @@ void DownpourWorker::TrainFilesWithProfiler() {
pull_dense_worker_
->
IncreaseThreadVersion
(
thread_id_
,
tid
);
}
PrintFetchVars
();
thread_scope_
->
DropKids
();
total_inst
+=
cur_batch
;
++
batch_cnt
;
...
...
@@ -328,7 +329,6 @@ void DownpourWorker::TrainFilesWithProfiler() {
}
}
timeline
.
Start
();
PrintFetchVars
();
}
}
...
...
@@ -438,9 +438,9 @@ void DownpourWorker::TrainFiles() {
pull_dense_worker_
->
IncreaseThreadVersion
(
thread_id_
,
tid
);
}
PrintFetchVars
();
thread_scope_
->
DropKids
();
++
batch_cnt
;
PrintFetchVars
();
}
}
...
...
paddle/fluid/framework/hogwild_worker.cc
浏览文件 @
6bf796df
...
...
@@ -102,7 +102,7 @@ void HogwildWorker::TrainFilesWithProfiler() {
}
total_inst
+=
cur_batch
;
++
batch_cnt
;
thread_scope_
->
DropKid
s
();
PrintFetchVar
s
();
if
(
thread_id_
==
0
)
{
if
(
batch_cnt
>
0
&&
batch_cnt
%
100
==
0
)
{
for
(
size_t
i
=
0
;
i
<
ops_
.
size
();
++
i
)
{
...
...
@@ -114,8 +114,8 @@ void HogwildWorker::TrainFilesWithProfiler() {
fprintf
(
stderr
,
"%6.2f instances/s
\n
"
,
total_inst
/
total_time
);
}
}
thread_scope_
->
DropKids
();
timeline
.
Start
();
PrintFetchVars
();
}
}
...
...
@@ -125,15 +125,13 @@ void HogwildWorker::TrainFiles() {
// how to accumulate fetched values here
device_reader_
->
Start
();
int
cur_batch
;
int
batch_cnt
=
0
;
while
((
cur_batch
=
device_reader_
->
Next
())
>
0
)
{
for
(
auto
&
op
:
ops_
)
{
op
->
Run
(
*
thread_scope_
,
place_
);
}
++
batch_cnt
;
thread_scope_
->
DropKids
();
PrintFetchVars
();
thread_scope_
->
DropKids
();
}
}
...
...
@@ -146,7 +144,7 @@ void HogwildWorker::PrintFetchVars() {
int
fetch_var_num
=
fetch_config_
.
fetch_var_names_size
();
for
(
int
i
=
0
;
i
<
fetch_var_num
;
++
i
)
{
platform
::
PrintVar
(
thread_scope_
,
fetch_config_
.
fetch_var_names
(
i
),
"None"
);
fetch_config_
.
fetch_var_str_format
(
i
)
);
}
}
}
...
...
paddle/fluid/framework/multi_trainer.cc
浏览文件 @
6bf796df
...
...
@@ -38,6 +38,7 @@ void MultiTrainer::Initialize(const TrainerDesc& trainer_desc,
for
(
int
i
=
0
;
i
<
thread_num_
;
++
i
)
{
workers_
[
i
]
=
DeviceWorkerFactory
::
CreateDeviceWorker
(
trainer_desc
.
device_worker_name
());
workers_
[
i
]
->
Initialize
(
trainer_desc
);
workers_
[
i
]
->
SetDeviceIndex
(
i
);
workers_
[
i
]
->
SetDataFeed
(
readers
[
i
]);
}
...
...
paddle/fluid/framework/trainer_desc.proto
浏览文件 @
6bf796df
...
...
@@ -51,7 +51,7 @@ message DownpourWorkerParameter {
message
FetchConfig
{
enum
Method
{
PRINT
=
0
;
}
repeated
string
fetch_var_names
=
1
;
optional
string
fetch_var_str_format
=
2
;
repeated
string
fetch_var_str_format
=
2
;
optional
int32
print_period
=
3
[
default
=
100
];
optional
Method
method
=
4
[
default
=
PRINT
];
}
...
...
paddle/fluid/platform/lodtensor_printer.cc
浏览文件 @
6bf796df
...
...
@@ -27,14 +27,12 @@ void print_lod_tensor(const std::string& var_name,
auto
element_num
=
lod_tensor
.
numel
();
std
::
ostringstream
sstream
;
sstream
<<
"user info: "
<<
print_info
<<
"
\t
"
;
sstream
<<
"var name: "
<<
var_name
<<
"
\t
"
;
sstream
<<
"numel: "
<<
element_num
<<
"
\t
"
;
sstream
<<
"value: "
<<
inspect
[
0
];
sstream
<<
print_info
<<
"
\t
"
;
sstream
<<
var_name
<<
"
\t
"
;
sstream
<<
inspect
[
0
];
for
(
int
j
=
1
;
j
<
element_num
;
++
j
)
{
sstream
<<
" "
<<
inspect
[
j
];
}
sstream
<<
"]"
;
std
::
cout
<<
sstream
.
str
()
<<
std
::
endl
;
}
...
...
python/paddle/fluid/executor.py
浏览文件 @
6bf796df
...
...
@@ -634,6 +634,9 @@ class Executor(object):
scope
=
global_scope
()
if
fetch_list
is
None
:
fetch_list
=
[]
if
fetch_info
is
None
:
fetch_info
=
[]
assert
len
(
fetch_list
)
==
len
(
fetch_info
)
compiled
=
isinstance
(
program
,
compiler
.
CompiledProgram
)
if
not
compiled
:
trainer
=
TrainerFactory
().
create_trainer
(
program
.
_fleet_opt
)
...
...
python/paddle/fluid/trainer_desc.py
浏览文件 @
6bf796df
...
...
@@ -37,10 +37,11 @@ class TrainerDesc(object):
self
.
program_
=
None
def
set_fetch_var_and_info
(
self
,
fetch_vars
,
fetch_info
,
print_period
):
for
v
in
fetch_vars
:
self
.
proto_desc
.
fetch_config
.
fetch_var_names
.
extend
(
v
.
name
)
self
.
proto_desc
.
fetch_config
.
fetch_var_str_format
=
fetch_info
self
.
proto_desc
.
print_period
=
print_period
for
i
,
v
in
enumerate
(
fetch_vars
):
self
.
proto_desc
.
fetch_config
.
fetch_var_names
.
extend
([
v
.
name
])
self
.
proto_desc
.
fetch_config
.
fetch_var_str_format
.
extend
(
[
fetch_info
[
i
]])
self
.
proto_desc
.
fetch_config
.
print_period
=
print_period
def
set_debug
(
self
,
debug
):
self
.
proto_desc
.
debug
=
debug
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录