Open vovaf709 opened 1 year ago
For example import imops breaks floating point subnormals flushing them to 0:
import imops
import sys sys.float_info.min / 2 != 0.0 # True import imops sys.float_info.min / 2 != 0.0 # False
https://github.com/llvm/llvm-project/issues/57589
https://moyix.blogspot.com/2022/09/someones-been-messing-with-my-subnormals.html
For example
import imops
breaks floating point subnormals flushing them to 0: