>>> import torch
>>> c = torch.randn(3)
>>> c.view(c)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: view(): argument 'size' (position 1) must be tuple of ints, not Tensor
>>> c.view(1, c)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError: localScalar() called on Tensor with 3 elements
we shouldn't mention localScalar.
cc @gchanan