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
Bypass denormals-to-zero assertion when running under Valgrind
Valgrind intentionally does not emulate SSE DAZ/FTZ modes, so the
DBL_MIN / 2 == 0.0 check always fails under Valgrind. Detect this
at runtime using RUNNING_ON_VALGRIND and skip the assertion.
The include is guarded with __has_include so it compiles cleanly
on systems without valgrind-dev installed.
Fixes#16053
0 commit comments