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
I've found FEHM works on many different problems - but when ran on co2 a segfault is generated if compiled with -ffpe-trap=underflow,overflow
If compiled in debug mode with -ffpe-trap=underflow,overflow FEHM's b matrix is off by a factor of idof in some locations; thus outputting incorrect results
If you know exactly what -ffpe-trap=underflow,overflow if you have any valuable information on this flag please comment.
The text was updated successfully, but these errors were encountered:
Specify a list of floating point exception traps to enable. On most systems, if a floating point exception occurs and the trap for that exception is enabled, a SIGFPE signal will be sent and the program being aborted, producing a core file useful for debugging. list is a (possibly empty) comma-separated list of the following exceptions: ‘invalid’ (invalid floating point operation, such as SQRT(-1.0)), ‘zero’ (division by zero), ‘overflow’ (overflow in a floating point operation), ‘underflow’ (underflow in a floating point operation), ‘inexact’ (loss of precision during operation), and ‘denormal’ (operation performed on a denormal value). The first five exceptions correspond to the five IEEE 754 exceptions, whereas the last one (‘denormal’) is not part of the IEEE 754 standard but is available on some common architectures such as x86.
I've found FEHM works on many different problems - but when ran on co2 a segfault is generated if compiled with -ffpe-trap=underflow,overflow
If compiled in debug mode with -ffpe-trap=underflow,overflow FEHM's b matrix is off by a factor of idof in some locations; thus outputting incorrect results
If you know exactly what -ffpe-trap=underflow,overflow if you have any valuable information on this flag please comment.
The text was updated successfully, but these errors were encountered: