🐛 Bug
Earlier, a bug was reported (#12093) about not being able to print large half Tensors. Now, half Tensors cannot be printed at all.
To Reproduce
>>> import torch
>>> a = torch.randn(1)
>>> print(a.half())
RuntimeError: s__th_eq is not implemented for type torch.HalfTensor
Expected behavior
Tensors should be printed, at least small ones.