Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
62ec644f
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2310
Star
20933
Fork
5423
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
62ec644f
编写于
11月 16, 2021
作者:
D
danleifeng
提交者:
GitHub
11月 16, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[psgpu]fix pipe bug:save and pull overlap; test=develop (#37233)
上级
f29a3c68
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
31 addition
and
37 deletion
+31
-37
paddle/fluid/framework/fleet/ps_gpu_wrapper.cc
paddle/fluid/framework/fleet/ps_gpu_wrapper.cc
+30
-29
paddle/fluid/framework/fleet/ps_gpu_wrapper.h
paddle/fluid/framework/fleet/ps_gpu_wrapper.h
+1
-8
未找到文件。
paddle/fluid/framework/fleet/ps_gpu_wrapper.cc
浏览文件 @
62ec644f
...
...
@@ -490,9 +490,8 @@ void PSGPUWrapper::LoadIntoMemory(bool is_shuffle) {
void
PSGPUWrapper
::
start_build_thread
()
{
running_
=
true
;
VLOG
(
3
)
<<
"start build CPU
&GPU
ps thread."
;
VLOG
(
3
)
<<
"start build CPU ps thread."
;
pre_build_threads_
=
std
::
thread
([
this
]
{
pre_build_thread
();
});
build_threads_
=
std
::
thread
([
this
]
{
build_thread
();
});
}
void
PSGPUWrapper
::
pre_build_thread
()
{
...
...
@@ -515,30 +514,28 @@ void PSGPUWrapper::pre_build_thread() {
VLOG
(
3
)
<<
"build cpu thread end"
;
}
void
PSGPUWrapper
::
build_thread
()
{
// build: build_pull + build_gputask
while
(
running_
)
{
std
::
shared_ptr
<
HeterContext
>
gpu_task
=
nullptr
;
if
(
!
gpu_free_channel_
->
Get
(
gpu_task
))
{
continue
;
}
if
(
!
buildcpu_ready_channel_
->
Get
(
gpu_task
))
{
continue
;
}
VLOG
(
3
)
<<
"thread BuildGPUTask start."
;
platform
::
Timer
timer
;
timer
.
Start
();
BuildPull
(
gpu_task
);
timer
.
Pause
();
timer
.
Start
();
BuildGPUTask
(
gpu_task
);
timer
.
Pause
();
VLOG
(
1
)
<<
"thread BuildGPUTask end, cost time: "
<<
timer
.
ElapsedSec
()
<<
"s"
;
train_ready_channel_
->
Put
(
gpu_task
);
void
PSGPUWrapper
::
build_task
()
{
// build_task: build_pull + build_gputask
std
::
shared_ptr
<
HeterContext
>
gpu_task
=
nullptr
;
// train end, gpu free
if
(
!
gpu_free_channel_
->
Get
(
gpu_task
))
{
return
;
}
// ins and pre_build end
if
(
!
buildcpu_ready_channel_
->
Get
(
gpu_task
))
{
return
;
}
VLOG
(
3
)
<<
"build gpu thread end"
;
VLOG
(
1
)
<<
"BuildPull start."
;
platform
::
Timer
timer
;
timer
.
Start
();
BuildPull
(
gpu_task
);
BuildGPUTask
(
gpu_task
);
timer
.
Pause
();
VLOG
(
1
)
<<
"BuildPull + BuildGPUTask end, cost time: "
<<
timer
.
ElapsedSec
()
<<
"s"
;
current_task_
=
gpu_task
;
}
void
PSGPUWrapper
::
BeginPass
()
{
...
...
@@ -548,11 +545,15 @@ void PSGPUWrapper::BeginPass() {
PADDLE_THROW
(
platform
::
errors
::
Fatal
(
"[BeginPass] current task is not ended."
));
}
// load+build done
if
(
!
train_ready_channel_
->
Get
(
current_task_
))
{
PADDLE_THROW
(
platform
::
errors
::
Fatal
(
"train_ready_channel_ failed."
));
}
build_task
();
timer
.
Pause
();
if
(
current_task_
==
nullptr
)
{
PADDLE_THROW
(
platform
::
errors
::
Fatal
(
"[BeginPass] after build_task, current task is not null."
));
}
VLOG
(
1
)
<<
"BeginPass end, cost time: "
<<
timer
.
ElapsedSec
()
<<
"s"
;
}
...
...
paddle/fluid/framework/fleet/ps_gpu_wrapper.h
浏览文件 @
62ec644f
...
...
@@ -91,7 +91,7 @@ class PSGPUWrapper {
void
EndPass
();
void
start_build_thread
();
void
pre_build_thread
();
void
build_t
hread
();
void
build_t
ask
();
void
Finalize
()
{
VLOG
(
3
)
<<
"PSGPUWrapper Begin Finalize."
;
...
...
@@ -101,7 +101,6 @@ class PSGPUWrapper {
data_ready_channel_
->
Close
();
buildcpu_ready_channel_
->
Close
();
gpu_free_channel_
->
Close
();
train_ready_channel_
->
Close
();
running_
=
false
;
VLOG
(
3
)
<<
"begin stop pre_build_threads_"
;
pre_build_threads_
.
join
();
...
...
@@ -169,8 +168,6 @@ class PSGPUWrapper {
buildcpu_ready_channel_
->
SetCapacity
(
3
);
gpu_free_channel_
->
Open
();
gpu_free_channel_
->
SetCapacity
(
1
);
train_ready_channel_
->
Open
();
train_ready_channel_
->
SetCapacity
(
1
);
current_task_
=
nullptr
;
gpu_free_channel_
->
Put
(
current_task_
);
...
...
@@ -306,10 +303,6 @@ class PSGPUWrapper {
paddle
::
framework
::
ChannelObject
<
std
::
shared_ptr
<
HeterContext
>>>
gpu_free_channel_
=
paddle
::
framework
::
MakeChannel
<
std
::
shared_ptr
<
HeterContext
>>
();
std
::
shared_ptr
<
paddle
::
framework
::
ChannelObject
<
std
::
shared_ptr
<
HeterContext
>>>
train_ready_channel_
=
paddle
::
framework
::
MakeChannel
<
std
::
shared_ptr
<
HeterContext
>>
();
std
::
shared_ptr
<
HeterContext
>
current_task_
=
nullptr
;
std
::
thread
pre_build_threads_
;
std
::
thread
build_threads_
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录