my question is mainly for scientific computations but I am asking in general. How do you practically choose fp model in compiler ? for example intel has precise, strict, fast, extended, source, double etc.

link|improve this question

62% accept rate
feedback

1 Answer

The GCC wiki has a writeup on various floating-point optimizations at http://gcc.gnu.org/wiki/FloatingPointMath

link|improve this answer
Yes but understanding how floating point computation really works is a little hard. So is there any best practice (e.g. in scientific computation world we should always use double and strict model etc) ? – mete May 18 '11 at 9:25
Understanding floating point computation deeply is not a little hard, it's very hard. And, there's no shortcut, sorry. The best practice is to thoroughly understand FP computation as well as your algorithm and then be able to make an informed decision wrt. how strict one needs to be for each particular algorithm. In practice, many don't bother with all that and just hope that whatever they're using is good enough. – janneb May 18 '11 at 18:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.