When you try to convert a Torch bfloat16 tensor to a numpy array, it throws a TypeError:
import torch
x = torch.Tensor([0]).to(torch.bfloat16)
x.numpy() # TypeError: Got unsupported ScalarType BFloat16
import numpy as np
np.array(x) # same error
Is there a work-around to make this conversion?
Currently,
numpydoes not support bfloat16**. One work-around is to upcast the tensor from half-precision to single-precision before making the conversion:The Pytorch maintainers are also considering adding a
force=Trueoption to theTensor.numpymethod to this automatically.** although that may change thanks to work by @jakevdp