Full_like
Full_like
torch_full_like( input, fill_value, dtype = NULL, layout = torch_strided(), device = NULL, requires_grad = FALSE, memory_format = torch_preserve_format() )
input |
(Tensor) the size of |
fill_value |
the number to fill the output tensor with. |
dtype |
( |
layout |
( |
device |
( |
requires_grad |
(bool, optional) If autograd should record operations on the returned tensor. Default: |
memory_format |
( |
memory_format=torch.preserve_format) -> Tensor
Returns a tensor with the same size as input
filled with fill_value
.
torch_full_like(input, fill_value)
is equivalent to
torch_full(input.size(), fill_value, dtype=input.dtype, layout=input.layout, device=input.device)
.
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.