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
Here another issue related to #4726 and #4413, impacting dscal this time.
With OpenBLAS 0.3.27:
$ LD_LIBRARY_PATH=lib/thirdparty:lib/thirdparty/redist ./openblas_dscal
result of nan * inf = nan
result of inf * nan = nan
result of 0 * nan = 0
result of nan * 0 = nan
result of 0 * inf = 0
result of inf * 0 = -nan
With refBLAS 3.12.0 :
$ LD_LIBRARY_PATH=$HOME/work/dependencies/lapack/build/lib ./openblas_dscal
result of nan * inf = nan
result of inf * nan = nan
result of 0 * nan = nan
result of nan * 0 = nan
result of 0 * inf = -nan
result of inf * 0 = -nan
Uh oh!
There was an error while loading. Please reload this page.
Here another issue related to #4726 and #4413, impacting
dscal
this time.With OpenBLAS 0.3.27:
With refBLAS 3.12.0 :
test code
The text was updated successfully, but these errors were encountered: