Closed
Description
Note
This seems to be a relatively narrow warning, since numpy<=1.24
doesn't throw this warning, nor does WSL2, nor does the native Windows package.
The warning thrown by numpy
is:
numpy/core/getlimits.py:542:
"""
UserWarning: Signature b'\x00\xd0\xcc\xcc\xcc\xcc\xcc\xcc\xfb\xbf\x00\x00\x00\x00\x00\x00' for
<class 'numpy.longdouble'> does not match any known type: falling back to type probe function.
This warnings indicates broken support for the dtype!
machar = _get_machar(dtype)
"""
When importing nibabel
, the following stack trace occurs:
import nibabel
->.analyze
->.arrayproxy
->.volumeutils
->.casting
->ok_floats()
nibabel.casting.ok_floats()
->best_float()
->type_info(np.longdouble)
->np.finfo(np.longdouble)
-> warning
Reading the source code of best_float()
, I see that nibabel
actively tries to avoid np.longdouble
on Windows:
Lines 667 to 670 in 0e925ab
Given nibabel
's intentions here, it seems as though the warning is largely noise? So, I thought I would mention it here in case nibabel
wishes to filter this warning.
Related issues:
Metadata
Metadata
Assignees
Labels
No labels