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 more of a heads up because there is nothing you can really do about that, because this is an issue with OpenBLAS.
On Intel Skylake CPUs the numpy.linalg.svd routine is broken and gives wrong output. See also numpy/numpy#13401
As a workaround users can set the architecture for OpenBLAS to something that doesn't exhibit the problem. For the CPU that showed the failing tests using haswell worked.
$ export OPENBLAS_VERBOSE=2
$ python3 maxent_result.pyCore: SkylakeXWarning: could not identify MPI environment!Starting serial run at: 2022-04-06 14:15:29.548704Traceback (most recent call last): File "maxent_result.py", line 129, in <module> "{} not equal".format(key)AssertionError: A not equal
$ export OPENBLAS_CORETYPE=haswell
$ python3 maxent_result.pyCore: HaswellWarning: could not identify MPI environment!Starting serial run at: 2022-04-06 14:15:57.296254
The text was updated successfully, but these errors were encountered:
Unfortunately, most HPC clusters out there are running decade-old CentOS or whatever ancient distribution and will not have received this update yet and most likely also won't for a few years to come.
Thanks for the update. And it seems to be only fixed in version 0.3.18 (https://github.com/xianyi/OpenBLAS/releases/tag/v0.3.18) if I see this correctly? Ubuntu 20.04 is also not even close to that version (0.3.8), and only the recent Ubuntu 22.04 has a version that should fix this. So I agree it will take quite some time to see this version on HPC machines...
This is more of a heads up because there is nothing you can really do about that, because this is an issue with OpenBLAS.
On Intel Skylake CPUs the
numpy.linalg.svd
routine is broken and gives wrong output. See also numpy/numpy#13401As a workaround users can set the architecture for OpenBLAS to something that doesn't exhibit the problem. For the CPU that showed the failing tests using
haswell
worked.The text was updated successfully, but these errors were encountered: