Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
97004f67
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
97004f67
编写于
11月 08, 2022
作者:
R
ronnywang
提交者:
GitHub
11月 08, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CustomDevice] fix undefined symbol GetCCLComm in the cpu version (#47717)
上级
14c95700
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
6 addition
and
0 deletion
+6
-0
paddle/fluid/pybind/CMakeLists.txt
paddle/fluid/pybind/CMakeLists.txt
+1
-0
paddle/fluid/pybind/distributed_py.cc
paddle/fluid/pybind/distributed_py.cc
+5
-0
未找到文件。
paddle/fluid/pybind/CMakeLists.txt
浏览文件 @
97004f67
...
...
@@ -183,6 +183,7 @@ if(WITH_PYTHON)
endif
()
set
(
PYBIND_SRCS
${
PYBIND_SRCS
}
distributed_py.cc
)
endif
()
set
(
PYBIND_DEPS
${
PYBIND_DEPS
}
processgroup_comm_utils
)
if
(
WITH_ASCEND
)
set
(
PYBIND_DEPS
${
PYBIND_DEPS
}
ascend_wrapper
)
...
...
paddle/fluid/pybind/distributed_py.cc
浏览文件 @
97004f67
...
...
@@ -59,6 +59,8 @@ limitations under the License. */
#include "paddle/fluid/distributed/store/tcp_store.h"
#endif
#include "paddle/phi/kernels/sync_batch_norm_kernel.h"
namespace
py
=
pybind11
;
namespace
paddle
{
...
...
@@ -90,6 +92,9 @@ using GlooOptions = paddle::distributed::ProcessGroupGloo::GlooOptions;
static
std
::
string
GLOO_SOCKET_IFNAME_ENV
=
"GLOO_SOCKET_IFNAME"
;
// NOLINT
static
UNUSED
void
*
use_ccl_comm_func
=
phi
::
detail
::
GetCCLComm
(
phi
::
CPUPlace
());
void
BindDistributed
(
py
::
module
*
m
)
{
py
::
enum_
<
distributed
::
ReduceOp
>
(
*
m
,
"ReduceOp"
)
.
value
(
"SUM"
,
distributed
::
ReduceOp
::
SUM
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录