Copy another storage
. The types of the two storages might be different: in that case
a conversion of types occur (which might result, of course, in loss of precision or rounding).
This method returns self, allowing things like:
x = torch.IntStorage(10):fill(1) y = torch.DoubleStorage(10):copy(x) -- y won't be nil!