mindspore.ops.Expand

class mindspore.ops.Expand[源代码]

返回一个当前张量的新视图,其中单维度扩展到更大的尺寸。

更多细节请参考 mindspore.ops.expand()

支持平台:

Ascend CPU

样例:

>>> x = Tensor(np.array([[1], [2], [3]]), mindspore.float32)
>>> shape = Tensor(np.array([3,4]), mindspore.int32)
>>> expand = ops.Expand()
>>> y = expand(x, shape)
>>> print(y)
[[1. 1. 1. 1.]
 [2. 2. 2. 2.]
 [3. 3. 3. 3.]]