未验证 提交 3c0b0999 编写于 作者: M mapingshuo 提交者: GitHub

change api, test=document_fix (#1702)

change API of range op
上级 f320c8f4
......@@ -5,14 +5,14 @@ range
.. py:function:: paddle.fluid.layers.range(start, end, step, dtype)
OP根据step均匀分隔给定数值区间[start, end),并返回该分隔结果。
API根据step均匀分隔给定数值区间[start, end),并返回该分隔结果。
参数:
- **start** (float32 | float64 | int32 | int64 | Variable) - 区间起点,且区间包括此值, 当类型是Variable时,是shape为 `[1]` 的1-D Tensor。
- **end** (float32 | float64 | int32 | int64 | Variable) - 区间终点,通常区间不包括此值。但当step不是整数,且浮点数取整会影响输出的长度时例外。
- **step** (float32 | float64 | int32 | int64 | Variable) - 均匀分割的步长。
- **dtype** (str) - 输出Tensor的数据类型,可为 `'float32'`, `'float64'`, `'int32'`, `'int64'` 。
- **dtype** (str | core.VarDesc.VarType) - 输出Tensor的数据类型,可为 `'float32'`, `'float64'`, `'int32'`, `'int64'` 。
返回:均匀分割给定数值区间后得到的1-D Tensor, 数据类型为输入 `dtype` 。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册