Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
643fd2f4
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
Star
20931
Fork
5422
代码
文件
提交
分支
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看板
未验证
提交
643fd2f4
编写于
11月 10, 2021
作者:
W
WangXi
提交者:
GitHub
11月 10, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[FleetExecutor]Add interceptor message handle (#37093)
上级
8a2ce0f2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
33 addition
and
0 deletion
+33
-0
paddle/fluid/distributed/fleet_executor/interceptor.cc
paddle/fluid/distributed/fleet_executor/interceptor.cc
+19
-0
paddle/fluid/distributed/fleet_executor/interceptor.h
paddle/fluid/distributed/fleet_executor/interceptor.h
+14
-0
未找到文件。
paddle/fluid/distributed/fleet_executor/interceptor.cc
浏览文件 @
643fd2f4
...
...
@@ -27,6 +27,16 @@ Interceptor::Interceptor(int64_t interceptor_id, TaskNode* node)
Interceptor
::~
Interceptor
()
{
interceptor_thread_
.
join
();
}
void
Interceptor
::
RegisterInterceptorHandle
(
InterceptorHandle
handle
)
{
handle_
=
handle
;
}
void
Interceptor
::
Handle
(
const
InterceptorMessage
&
msg
)
{
if
(
handle_
)
{
handle_
(
msg
);
}
}
std
::
condition_variable
&
Interceptor
::
GetCondVar
()
{
// get the conditional var
return
cond_var_
;
...
...
@@ -47,6 +57,13 @@ bool Interceptor::EnqueueRemoteInterceptorMessage(
return
true
;
}
void
Interceptor
::
Send
(
int64_t
dst_id
,
std
::
unique_ptr
<
InterceptorMessage
>
msg
)
{
msg
->
set_src_id
(
interceptor_id_
);
msg
->
set_dst_id
(
dst_id
);
// send interceptor msg
}
void
Interceptor
::
PoolTheMailbox
()
{
// pool the local mailbox, parse the Message
while
(
true
)
{
...
...
@@ -67,6 +84,8 @@ void Interceptor::PoolTheMailbox() {
// break the pooling thread
break
;
}
Handle
(
interceptor_message
);
}
}
...
...
paddle/fluid/distributed/fleet_executor/interceptor.h
浏览文件 @
643fd2f4
...
...
@@ -15,6 +15,7 @@
#pragma once
#include <condition_variable>
#include <functional>
#include <map>
#include <memory>
#include <queue>
...
...
@@ -32,6 +33,9 @@ namespace distributed {
class
TaskNode
;
class
Interceptor
{
public:
using
InterceptorHandle
=
std
::
function
<
void
(
const
InterceptorMessage
&
)
>
;
public:
Interceptor
()
=
delete
;
...
...
@@ -39,6 +43,11 @@ class Interceptor {
virtual
~
Interceptor
();
// register interceptor handle
void
RegisterInterceptorHandle
(
InterceptorHandle
handle
);
void
Handle
(
const
InterceptorMessage
&
msg
);
// return the interceptor id
int64_t
GetInterceptorId
()
const
;
...
...
@@ -49,6 +58,8 @@ class Interceptor {
bool
EnqueueRemoteInterceptorMessage
(
const
InterceptorMessage
&
interceptor_message
);
void
Send
(
int64_t
dst_id
,
std
::
unique_ptr
<
InterceptorMessage
>
msg
);
DISABLE_COPY_AND_ASSIGN
(
Interceptor
);
private:
...
...
@@ -65,6 +76,9 @@ class Interceptor {
// node need to be handled by this interceptor
TaskNode
*
node_
;
// interceptor handle which process message
InterceptorHandle
handle_
{
nullptr
};
// mutex to control read/write conflict for remote mailbox
std
::
mutex
remote_mailbox_mutex_
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录