Returns a tensor with the same size as input
that is filled with
random numbers from a normal distribution with mean 0 and variance 1.
torch_randn_like(input)
is equivalent to
torch_randn(input.size(), dtype=input.dtype, layout=input.layout, device=input.device)
.