empty

paddle. empty ( shape, dtype=None, name=None ) [source]

This Op returns a Tensor with uninitialized data which size is same as shape.

Parameters
  • shape (list|tuple|Tensor) – Shape of the Tensor to be created. The data type of dimension of shape is int32 or int64 . If shape is a list or tuple, the elements of it should be integers or Tensors with shape [1]. If shape is an Tensor, it should be an 1-D Tensor.

  • dtype (np.dtype|str, optional) – Data type of the output Tensor which can be bool, float16, float32, float64, int32, int64, if dytpe is None, the data type of created Tensor use global default dtype (see get_default_dtype for details).

  • name (str, optional) – The default value is None. Normally there is no need for user to set this property. For more information, please refer to Name.

Returns

Tensor which is created according to shape and dtype, and is uninitialized.

Return type

Tensor

Examples

import paddle
import numpy as np

paddle.set_device("cpu")  # and use cpu device

# example 1: argument ``shape`` is a list which doesn't contain Tensor.
data1 = paddle.empty(shape=[2,3], dtype='float32')
#[[4.3612203e+27 1.8176809e+31 1.3555911e-19]     # uninitialized
# [1.1699684e-19 1.3563156e-19 3.6408321e-11]]    # uninitialized

# example 2: argument ``shape`` is a Tensor, the data type must be int64 or int32.
shape_data = np.array([2, 3]).astype('int32')
shape = paddle.to_tensor(shape_data)
data2 = paddle.empty(shape=shape, dtype='float32')
#[[1.7192326e-37 4.8125365e-38 1.9866003e-36]     # uninitialized
# [1.3284029e-40 7.1117408e-37 2.5353012e+30]]    # uninitialized

# example 3: argument ``shape`` is a list which contains Tensor.
dim2_data = np.array([3]).astype('int32')
dim2 = paddle.to_tensor(dim2_data)
data3 = paddle.empty(shape=[2, dim2], dtype='float32')
#[[1.1024214e+24 7.0379409e+22 6.5737699e-34]     # uninitialized
# [7.5563101e+31 7.7130405e+31 2.8020654e+20]]    # uninitialized