A computation in my C code is producing a gradual underflow, and when it happens the program is terminating with SIGFPE. How can I flush the result to zero when a gradual underflow (Denormal) results from a computation, and not terminate the execution? (I am working on a redhat linux machine). Thanks.
You haven't specified the architecture - I'm going to take a guess that it's a relatively recent x86[-64], in which case you can manipulate the SSE control register using _mm_getcsr
, _mm_setcsr
, specified in the <xmmintrin.h>
(or <immintrin.h>
) header.
The 'flush-to-zero' bit is set with 0x8000, and 'denormals-are-zero' (for inputs / src) is set with 0x0040.
_mm_setcsr(_mm_getcsr() | 0x8040);
or with <pmmintrin.h>
(SSE3) :
_mm_setcsr(_mm_getcsr() | (_MM_FLUSH_ZERO_ON | _MM_DENORMALS_ZERO_ON));
This might make it easier to determine the source of the underflow, but it shouldn't be considered a solution, since the FP environment is no longer IEEE-754 compliant.
来源:https://stackoverflow.com/questions/17981908/flush-to-zero-when-a-computation-results-in-a-denormal-number-in-linux