Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
9c97f623
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
7
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9c97f623
编写于
9月 02, 2020
作者:
L
lilong12
提交者:
GitHub
9月 02, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update (#2530)
上级
ce7da936
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
7 addition
and
7 deletion
+7
-7
doc/fluid/api_cn/distributed_cn/all_gather_cn.rst
doc/fluid/api_cn/distributed_cn/all_gather_cn.rst
+2
-2
doc/fluid/api_cn/distributed_cn/all_reduce_cn.rst
doc/fluid/api_cn/distributed_cn/all_reduce_cn.rst
+1
-1
doc/fluid/api_cn/distributed_cn/broadcast_cn.rst
doc/fluid/api_cn/distributed_cn/broadcast_cn.rst
+1
-1
doc/fluid/api_cn/distributed_cn/reduce_cn.rst
doc/fluid/api_cn/distributed_cn/reduce_cn.rst
+1
-1
doc/fluid/api_cn/distributed_cn/scatter_cn.rst
doc/fluid/api_cn/distributed_cn/scatter_cn.rst
+2
-2
未找到文件。
doc/fluid/api_cn/distributed_cn/all_gather_cn.rst
浏览文件 @
9c97f623
...
...
@@ -10,8 +10,8 @@ all_gather
参数
:::::::::
- tensor_list (list) - 操作的输出Tensor列表。列表中的每个元素均为Tensor,每个Tensor的数据类型为:float32、float64、int32、int64。
- tensor (Tensor) - 操作的输入Tensor。Tensor的数据类型为:float32、float64、int32、int64。
- tensor_list (list) - 操作的输出Tensor列表。列表中的每个元素均为Tensor,每个Tensor的数据类型为:float
16、float
32、float64、int32、int64。
- tensor (Tensor) - 操作的输入Tensor。Tensor的数据类型为:float
16、float
32、float64、int32、int64。
- group (int,可选) - 工作的进程组编号,默认为0。
返回
...
...
doc/fluid/api_cn/distributed_cn/all_reduce_cn.rst
浏览文件 @
9c97f623
...
...
@@ -10,7 +10,7 @@ all_reduce
参数
:::::::::
- tensor (Tensor) - 操作的输入Tensor,同时也会将归约结果返回至此Tensor中。Tensor的数据类型为:float32、float64、int32、int64。
- tensor (Tensor) - 操作的输入Tensor,同时也会将归约结果返回至此Tensor中。Tensor的数据类型为:float
16、float
32、float64、int32、int64。
- op (ReduceOp.SUM|ReduceOp.MAX|ReduceOp.Min|ReduceOp.PROD,可选) - 归约的具体操作,比如求和,取最大值,取最小值和求乘积,默认为求和归约。
- group (int,可选) - 工作的进程组编号,默认为0。
...
...
doc/fluid/api_cn/distributed_cn/broadcast_cn.rst
浏览文件 @
9c97f623
...
...
@@ -10,7 +10,7 @@ broadcast
参数
:::::::::
- tensor (Tensor) - 如果当前进程编号是源,那么这个Tensor变量将被发送给其他进程,否则这个Tensor将接收源发送过来的数据。Tensor的数据类型为:float32、float64、int32、int64。
- tensor (Tensor) - 如果当前进程编号是源,那么这个Tensor变量将被发送给其他进程,否则这个Tensor将接收源发送过来的数据。Tensor的数据类型为:float
16、float
32、float64、int32、int64。
- src (int) - 发送源的进程编号。
- group (int,可选) - 工作的进程组编号,默认为0。
...
...
doc/fluid/api_cn/distributed_cn/reduce_cn.rst
浏览文件 @
9c97f623
...
...
@@ -10,7 +10,7 @@ reduce
参数
:::::::::
- tensor (Tensor) - 操作的输入Tensor,结果返回至目标进程号的Tensor中。Tensor的数据类型为:float32、float64、int32、int64。
- tensor (Tensor) - 操作的输入Tensor,结果返回至目标进程号的Tensor中。Tensor的数据类型为:float
16、float
32、float64、int32、int64。
- dst (int) - 返回操作结果的目标进程编号。
- op (ReduceOp.SUM|ReduceOp.MAX|ReduceOp.Min|ReduceOp.PROD,可选) - 归约的具体操作,比如求和,取最大值,取最小值和求乘积,默认为求和归约。
- group (int,可选) - 工作的进程组编号,默认为0。
...
...
doc/fluid/api_cn/distributed_cn/scatter_cn.rst
浏览文件 @
9c97f623
...
...
@@ -10,8 +10,8 @@ scatter
参数
:::::::::
- tensor (Tensor) - 操作的输出Tensor。Tensor的数据类型为:float32、float64、int32、int64。
- tensor_list (list,可选) - 操作的输入Tensor列表,默认为None。列表中的每个元素均为Tensor,每个Tensor的数据类型为:float32、float64、int32、int64。
- tensor (Tensor) - 操作的输出Tensor。Tensor的数据类型为:float
16、float
32、float64、int32、int64。
- tensor_list (list,可选) - 操作的输入Tensor列表,默认为None。列表中的每个元素均为Tensor,每个Tensor的数据类型为:float
16、float
32、float64、int32、int64。
- src (int,可选) - 操作的源进程号,该进程号的Tensor列表将分发到其他进程中。默认为0。
- group (int,可选) - 工作的进程组编号,默认为0。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录