create_tensor¶
创建数据类型为dtype的Tensor。
- 参数:
-
dtype (str|numpy.dtype) - 创建的Tensor的数据类型,支持数据类型为bool, float16, float32, float64, int8, int16, int32, int64。
name (str, 可选) - 具体用法请参见 Name ,一般无需设置,默认值为None。
persistable (bool,可选) - 用于设置创建的Tensor的persistable属性,若不设置则默认设置为False。
返回: 创建的Tensor,数据类型为dtype。
返回类型:Variable
代码示例:
"""
使用print(tensor)打印结果如下:
type {
type: LOD_TENSOR
lod_tensor {
tensor {
data_type: FP32
}
}
}
persistable: false
"""
import paddle.fluid as fluid
tensor = fluid.layers.create_tensor(dtype='float32')