Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
900b3e97
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看板
提交
900b3e97
编写于
4月 03, 2018
作者:
T
tangwei12
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
send mpi and rpc framework
上级
9d256dd1
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
120 addition
and
94 deletion
+120
-94
paddle/fluid/operators/detail/mpi_utils.cpp
paddle/fluid/operators/detail/mpi_utils.cpp
+56
-58
paddle/fluid/operators/detail/mpi_utils.h
paddle/fluid/operators/detail/mpi_utils.h
+64
-36
未找到文件。
paddle/fluid/operators/detail/mpi_utils.cpp
浏览文件 @
900b3e97
...
...
@@ -12,9 +12,9 @@
#define mpi_tag = 2008
namespace
paddle
{
namespace
operators
{
namespace
detail
{
MPIUtils
::
MPIUtils
(
const
std
::
string
&
worker_name
)
{
namespace
operators
{
namespace
detail
{
MPIUtils
::
MPIUtils
(
const
std
::
string
&
worker_name
)
{
InitMPI
();
int
rank
=
0
,
size
=
1
;
...
...
@@ -29,9 +29,9 @@ MPIUtils::MPIUtils(const std::string& worker_name) {
for
(
int
i
=
0
;
i
<
number_of_procs
;
i
++
)
{
name_to_id_
[
std
::
string
(
&
worker_names
[
i
*
128
])]
=
i
;
}
}
}
void
MPIUtils
::
InitMPI
()
{
void
MPIUtils
::
InitMPI
()
{
int
flag
=
0
;
MPI_CHECK
(
MPI_Initialized
(
&
flag
));
...
...
@@ -42,51 +42,49 @@ void MPIUtils::InitMPI() {
MPI_Init
(
0
,
0
);
MPI_Comm_rank
(
MPI_COMM_WORLD
,
&
rank
);
MPI_Comm_size
(
MPI_COMM_WORLD
,
&
size
);
MPI_Get_processor_name
(
host_name
,
&
len
)
MPI_Get_processor_name
(
host_name
,
&
len
);
}
};
MPIIsend
::
MPIIsend
(
int
dst
,
const
char
*
req
)
{
done1
=
0
;
done2
=
0
;
length
=
strlen
(
req
);
req
=
req
;
}
MPIIsend
::
Send
()
{
MPI_Isend
(
&
req
,
length
,
MPI_CHAR
,
dst
,
mpi_tag
,
MPI_COMM_WORLD
,
&
msg1_
);
MPI_Test
(
&
msg1_
,
&
done1_
,
MPI_STATUS_IGNORE
)
}
bool
MPIIsend
::
IsFinished
()
{
MPI_Status
status
;
if
(
!
done1_
)
MPI_Test
(
&
msg1_
,
&
done1_
,
&
status
);
return
done1
;
};
MPISend
::
MPISend
(
const
Meta
&
meta
)
{
done1_
=
1
;
done2_
=
0
;
this
->
meta
=
meta
;
}
MPIIsend
::~
MPIIsend
(){
MPI_Wait
(
&
msg1_
,
MPI_STATUS_IGNORE
);
MPI_Free_mem
(
req
);
}
MPISend
::
Send
()
{
MPI_Send
(
&
meta
.
request
,
meta
.
count
,
meta
.
datatype
,
meta
.
dst
,
meta
.
tag
,
MPI_COMM_WORLD
);
done2_
=
1
;
}
MPIIrecv
::
MPIIrecv
(){
bool
MPISend
::
IsReady
()
{
return
true
;
}
}
bool
MPISend
::
IsFinished
()
{
return
done1_
&&
done2_
;
}
MPIIrecv
::
Recv
(){
MPISend
::~
MPISend
()
{
MPI_Free_mem
(
meta
);
}
}
MPIIrecv
::
IsFinished
(){
MPIRecv
::
MPIRecv
(
const
Meta
&
meta
)
{
this
->
meta
=
meta
;
}
MPIRecv
::
Recv
()
{}
}
bool
MPIRecv
::
IsReady
()
{
return
true
;
}
MPIIrecv
::~
MPIIrecv
(){
MPIRecv
::
IsFinished
()
{}
}
MPIRecv
::~
MPIRecv
()
{
MPI_Free_mem
(
meta
);
}
}
// namespace detail
}
// namespace detail
}
// namespace operators
}
// namespace operators
}
// namespace paddle
\ No newline at end of file
paddle/fluid/operators/detail/mpi_utils.h
浏览文件 @
900b3e97
...
...
@@ -10,46 +10,74 @@ See the License for the specific language governing permissions and
limitations under the License. */
#pragma once
#include <mpi.h>
#include <map>
#include <string>
#include <vector>
namespace
paddle
{
namespace
operators
{
namespace
detail
{
class
MPIUtils
{
namespace
operators
{
namespace
detail
{
class
MPIUtils
{
public:
MPIUtils
(
const
std
::
string
&
worker_name
);
const
int
GetRankID
(
const
std
::
string
&
task_id
);
MPIUtils
(
const
std
::
string
&
worker_name
);
const
int
GetRankID
(
const
std
::
string
&
task_id
);
private:
void
InitMPI
();
std
::
map
<
std
::
string
,
int
>
name_id_map
;
};
};
class
Meta
{
public:
int
src
;
int
dst
;
MPI_Datatype
datatype
;
char
*
request
;
int
count
;
int
tag
;
int
device
;
};
class
MPIIs
end
{
class
MPIS
end
{
public:
MPIIsend
(
int
dst
,
const
char
*
buf
);
MPISend
(
const
Meta
&
meta
);
bool
IsFinished
();
bool
IsReady
();
void
Send
();
~
MPIIsend
();
~
MPISend
();
private:
int
done1
;
int
length
;
char
*
req
;
MPI_Request
msg1_
;
};
int
done1_
;
int
done2_
;
Meta
*
meta
;
};
class
MPIIr
ecv
{
class
MPIR
ecv
{
public:
MPIIrecv
();
bool
IsFinished
();
MPIRecv
(
const
Meta
&
meta
);
bool
IsReady
();
bool
IsFinished
();
void
Recv
();
~
MPIIrecv
();
};
}
// namespace detail
}
// namespace operators
~
MPIRecv
();
private:
int
done1_
;
int
done2_
;
Meta
*
meta
;
};
}
// namespace detail
}
// namespace operators
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录