该OP返回一个数值在0到n-1、随机排列的1-D Tensor,数据类型为 dtype。
dtype
name (str, 可选) - 输出的名字。一般无需设置,默认值为None。该参数供开发人员打印调试信息时使用,具体用法请参见 Name 。
Tensor:一个数值在0到n-1、随机排列的1-D Tensor,数据类型为 dtype 。
import paddle out1 = paddle.randperm(5) # [4, 1, 2, 3, 0] # random out2 = paddle.randperm(7, 'int32') # [1, 6, 2, 0, 4, 3, 5] # random