Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
eb05db71
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
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看板
未验证
提交
eb05db71
编写于
10月 07, 2019
作者:
C
Chengmo
提交者:
GitHub
10月 07, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Speed GEO-SGD (#20158)
* delete debug vlog & add rpc function & fix word2vec bug & speed GEO-SGD
上级
b28d4a82
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
301 addition
and
222 deletion
+301
-222
paddle/fluid/operators/distributed/communicator.cc
paddle/fluid/operators/distributed/communicator.cc
+263
-213
paddle/fluid/operators/distributed/communicator.h
paddle/fluid/operators/distributed/communicator.h
+36
-7
python/paddle/fluid/transpiler/geo_sgd_transpiler.py
python/paddle/fluid/transpiler/geo_sgd_transpiler.py
+2
-2
未找到文件。
paddle/fluid/operators/distributed/communicator.cc
浏览文件 @
eb05db71
此差异已折叠。
点击以展开。
paddle/fluid/operators/distributed/communicator.h
浏览文件 @
eb05db71
...
...
@@ -27,7 +27,10 @@ limitations under the License. */
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/framework/variable.h"
#include "paddle/fluid/operators/distributed/distributed.h"
#include "paddle/fluid/operators/distributed/rpc_client.h"
#include "paddle/fluid/operators/distributed/rpc_common.h"
#include "paddle/fluid/operators/distributed_ops/send_recv_util.h"
#include "paddle/fluid/operators/math/math_function.h"
#include "paddle/fluid/operators/math/selected_rows_functor.h"
#include "paddle/fluid/platform/device_context.h"
...
...
@@ -268,7 +271,7 @@ class Communicator {
};
using
SparseIdsMap
=
std
::
unordered_map
<
std
::
string
,
std
::
unordered_set
<
int64_t
>>
;
std
::
unordered_map
<
std
::
string
,
std
::
vector
<
std
::
unordered_set
<
int64_t
>
>>
;
class
AsyncCommunicator
:
public
Communicator
{
public:
...
...
@@ -348,15 +351,18 @@ class GeoSgdCommunicator : public Communicator {
private:
void
SendThread
();
void
RecvAll
();
std
::
unordered_set
<
int64_t
>
SparseIdsMerge
(
const
std
::
vector
<
SparseIdsMap
>&
ids_send_vec
,
const
std
::
string
&
var_name
);
const
std
::
string
&
var_name
,
const
std
::
string
&
splited_var_name
);
void
SendUpdateDenseVars
(
const
std
::
string
&
var_name
);
void
SendUpdateSparseVars
(
const
std
::
string
&
var_name
,
const
std
::
string
&
splited_var_name
,
const
std
::
unordered_set
<
int64_t
>&
ids_table
);
void
RecvUpdateVars
(
const
std
::
string
&
var_name
);
void
RecvUpdateDenseVars
(
const
std
::
string
&
var_name
);
void
RecvUpdateSparseVars
(
const
std
::
string
&
var_name
,
const
std
::
string
&
splited_var_name
);
void
GeoSgdDenseParamInit
(
framework
::
Scope
*
scope_x
,
framework
::
Scope
*
scope_y
,
...
...
@@ -366,6 +372,14 @@ class GeoSgdCommunicator : public Communicator {
framework
::
Scope
*
scope_y
,
const
std
::
string
var_name
);
void
RpcSend
(
const
std
::
string
&
origin_var_name
,
const
std
::
string
&
splited_var_name
,
const
size_t
&
splited_var_index
);
void
RpcRecv
(
const
std
::
string
&
origin_var_name
,
const
std
::
string
&
splited_var_name
,
const
size_t
&
splited_var_index
);
const
std
::
string
VarToDeltaVar
(
const
std
::
string
var_name
)
{
std
::
string
delta_name
=
var_name
;
const
std
::
string
send_name
=
delta_name
.
append
(
".delta"
);
...
...
@@ -379,6 +393,20 @@ class GeoSgdCommunicator : public Communicator {
return
param_name
;
}
size_t
GetSplitedVarIndex
(
const
std
::
string
var_name
,
const
std
::
string
splited_var_name
)
{
size_t
index
=
0
;
for
(
size_t
i
=
0
;
i
<
send_varname_to_ctx_
[
var_name
].
splited_var_names
.
size
();
i
++
)
{
if
(
send_varname_to_ctx_
[
var_name
].
splited_var_names
[
i
]
==
splited_var_name
)
{
index
=
i
;
break
;
}
}
return
index
;
}
private:
int
trainer_nums_
=
1
;
int
geo_need_push_nums_
=
100
;
...
...
@@ -390,8 +418,6 @@ class GeoSgdCommunicator : public Communicator {
std
::
shared_ptr
<
Scope
>
pserver_scope_
;
// parameter on pserver,gloabl scope
RpcCtxMap
send_varname_to_ctx_
;
RpcCtxMap
recv_varname_to_ctx_
;
std
::
atomic_uint
have_push_
{
0
};
std
::
unordered_map
<
std
::
string
,
bool
>
var_list_
;
// if var is sparse, using selected rows, bool=true
...
...
@@ -399,9 +425,12 @@ class GeoSgdCommunicator : public Communicator {
need_push_queue_
;
std
::
vector
<
SparseIdsMap
>
ids_send_vec_
;
std
::
unordered_map
<
std
::
string
,
std
::
vector
<
int64_t
>>
absolute_section_
;
std
::
unique_ptr
<::
ThreadPool
>
send_threadpool_
{
nullptr
};
std
::
unique_ptr
<::
ThreadPool
>
recv_threadpool_
{
nullptr
};
std
::
unique_ptr
<
std
::
thread
>
send_thread_
{
nullptr
};
size_t
need_thread_nums_
{
0
};
};
}
// namespace distributed
...
...
python/paddle/fluid/transpiler/geo_sgd_transpiler.py
浏览文件 @
eb05db71
...
...
@@ -179,8 +179,8 @@ class GeoSgdTranspiler(DistributeTranspiler):
return
self
.
vars_info
def
get_trainer_program
(
self
,
wait_port
=
True
):
#
if wait_port:
#
wait_server_ready(self.pserver_endpoints)
if
wait_port
:
wait_server_ready
(
self
.
pserver_endpoints
)
return
self
.
origin_program
def
get_pserver_programs
(
self
,
endpoint
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录