比较与torch.full的功能差异

查看源文件

torch.full

torch.full(
    size,
    fill_value,
    *,
    out=None,
    dtype=None,
    layout=torch.strided,
    device=None,
    requires_grad=False
) -> Tensor

更多内容详见torch.full

mindspore.ops.full

mindspore.ops.full(size, fill_value, *, dtype=None) -> Tensor

更多内容详见mindspore.ops.full

差异对比

PyTorch:返回用fill_value填充的给定大小的张量。

MindSpore:MindSpore此API实现功能与PyTorch基本一致,但参数名不同。

分类

子类

PyTorch

MindSpore

差异

参数

参数1

size

size

功能一致

参数2

fill_value

fill_value

PyTorch的full算子支持类型为number,MindSpore不支持复数类型。

参数3

dtype

dtype

功能一致

参数4

out

-

不涉及

参数5

layout

-

不涉及

参数6

device

-

不涉及

参数7

requires_grad

-

MindSpore无此参数,默认支持反向求导

代码示例1

# PyTorch
import torch

torch_output = torch.full((2, 3), 1)
print(torch_output.numpy())
# [[1 1 1]
#  [1 1 1]]

# MindSpore
import mindspore

ms_tensor_output = mindspore.ops.full((2, 3), 1)
print(ms_tensor_output)
# [[1 1 1]
#  [1 1 1]]