You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is due to the fact that np.save saves the dtype via the kind code, and we chose np.dtype(bfloat16).kind = 'V' because such codes are not extensible in numpy.
When reconstructing the dtype, this is the result:
np.dtype(np.dtype(bfloat16).kind)
# dtype('V')
I don't think this is something that can be fixed without deeper changes to numpy itself.
The text was updated successfully, but these errors were encountered:
This is due to the fact that
np.save
saves the dtype via thekind
code, and we chosenp.dtype(bfloat16).kind = 'V'
because such codes are not extensible in numpy.When reconstructing the dtype, this is the result:
I don't think this is something that can be fixed without deeper changes to numpy itself.
The text was updated successfully, but these errors were encountered: