Are you aware what precision of operations on floating point numbers is different in project compiled in debug mode vs the one compiled in release mode.
|
1
|
|||||||
|
|
|
They can indeed be different. According to the CLR ECMA specification:
What this basically means is that the following comparison may or may not be equal:
Take-home message: never check floating values for equality. |
||||||
|
|
|
They should be the same. Floating point numbers are based on IEEE_754 standard. |
||
|
|
|
|
I would expect them to not differ, since C# (and .NET) is using IEEE for their double and float. If it did change it would have very weird consequences. EDIT: Just to be clear here. If Debug and Release are compiled for the same hardware there would be no differences. If you compile for two different underlying hardware, eg PowerPC and Intel, there could be differences, but that has nothing to do with the configuration. So if you find bugs in your code that doesn't show up in Debug, but only in Release (or vice versa, even though that's usually not the case), the problem is most likely something else. Blaming the compiler is common, but rarely right. :) |
||||
|
|
|
In fact, they may differ if debug mode uses the x87 FPU and release mode uses SSE for float-ops. |
||
|
|
|
In response to Frank Krueger's request above (in comments) for a demonstration of a difference: Compile this code in gcc with no optimizations and -mfpmath=387 (I have no reason to think it wouldn't work on other compilers, but I haven't tried it.) Then compile it with no optimizations and -msse -mfpmath=sse. The output will differ.
|
||||
|
|
|
Thanks guys I found a couple of articles what says what in did behavior of floats will be different in release mode http://blogs.msdn.com/davidnotario/archive/2005/08/08/449092.aspx |
||
|
|
|
|
This is an interesting question, so I did a bit of experimentation. I used this code:
using DevStudio 2005 and .Net 2. I compiled as both debug and release and examined the output of the compiler:
What the above shows is that the floating point code is the same for both debug and release, the compiler is choosing consistency over optimisation. Although the program produces the wrong result (a * a is not less than b) it is the same regardless of the debug/release mode. Now, the Intel IA32 FPU has eight floating point registers, you would think that the compiler would use the registers to store values when optimising rather than writing to memory, thus improving the performance, something along the lines of:
but this would execute differently to the debug version (in this case, display the correct result). However, changing the behaviour of the program depending on the build options is a very bad thing. FPU code is one area where hand crafting the code can significantly out-perform the compiler, but you do need to get your head around the way the FPU works. Skizz |
||
|
|
