vote up 7 vote down star
2

I'm writing an application which reads large arrays of floats and performs some simple operations with them. I'm using floats because I thought it'd be faster than doubles, but after doing some research I've found that there's some confusion about this topic. Can anyone elaborate on this?

Thanks.

flag

59% accept rate

8 Answers

vote up 20 vote down check

The short answer is, "use whichever precision is required for acceptable results."

Your one guarantee is that operations performed on floating point data are done in at least the highest precision member of the expression. So multiplying two float's is done with at least the precision of float, and multiplying a float and a double would be done with at least double precision. The standard states that "[floating-point] operations may be performed with higher precision than the result type of the operation."

Given that the JIT for .Net attempts to leave your floating point operations in the precision requested, we can take a look at documentation from Intel for speeding up our operations. On the Intel platform your floating point operations may be done in an intermediate precision of 80bits, and converted down to the precision requested.

From Intel's guide to C++ Floating-point Operations1 (sorry only have dead tree), they mention:

  • Use a single precision type (for example, float) unless the extra precision obtained through double or long double is required. Greater precision types increase memory size and bandwidth requirements. ...
  • Avoid mixed data type arithmetic expressions

That last point is important as you can slow yourself down with unnecessary casts to/from float and double, which result in JIT'd code which requests the x87 to cast away from its 80bit intermediate format in between operations!

1. Yes it says C++, but the C# standard plus knowledge of the CLR lets us know the information for C++ should be applicable in this instance.

link|flag
On a side note (with no bearing on your answer), does the .net JIT use x87? Intel's been telling everyone to abandon it for a while in favour of SSE. – Mike F Oct 1 '08 at 18:34
@Mike F: from what I can tell, it doesn't appear to choose SSE operations. Don't quote me on that, that is only from what I've seen JIT'd in my code. I may ask a microsoftie and find out. – sixlettervariables Oct 1 '08 at 18:35
@sixlettervariables: I'd be very interested to hear the answer if you ever get one and feel like posting it here. – Mike F Oct 1 '08 at 18:43
vote up 1 vote down

I'm writing a ray tracer, and replacing the floats with doubles for my Color class gives me a 5% speedup. Replacing the Vectors floats with doubles is another 5% faster! Pretty cool :)

That's with a Core i7 920

link|flag
vote up 1 vote down

With 387 FPU arithmetic, float is only faster than double for certain long iterative operations like pow, log, etc (and only if the compiler sets the FPU control word appropriately).

With packed SSE arithmetic, it makes a big difference though.

link|flag
vote up 6 vote down

I profiled a similar question a few weeks ago. The bottom line is that for x86 hardware, there is no significant difference in the performance of floats versus doubles unless you become memory bound, or you start running into cache issue. In that case floats will generally have the advantage because they are smaller.

Current Intel CPUs perform all floating point operations in 80 bit wide registers so the actual speed of the computation shouldn't vary between floats and doubles.

link|flag
vote up 3 vote down

If load & store operations are the bottleneck, then floats will be faster, because they're smaller. If you're doing a significant number of calculations between loads and stores, it should be about equal.

Someone else mentioned avoiding conversions between float & double, and calculations that use operands of both types. That's good advice, and if you use any math library functions that return doubles (for example), then keeping everything as doubles will be faster.

link|flag
This is the case with C# where all math operations return doubles. For literal values, you can use f, etc for the value itself. – Joan Venge Jan 6 at 18:56
vote up 2 vote down

floats should be faster on a 32-bit system, but profile the code to make sure you're optimizing the right thing

link|flag
@Steven A. Lowe: I would note that some 32-bit systems lack 32-bit floating point numbers internally! Hence, decreasing overall performance. Your statement is correct from a memory-bandwidth perspective as a float fits nicer than a double. – sixlettervariables Oct 1 '08 at 18:16
vote up -2 vote down

A float (System.Single) is a 32-bit structure whereas a double (System.Double) is 64-bit so, all else considered equal, a float will be faster on a 32-bit machine than a double just as System.Int32 is faster than System.Int64.

link|flag
vote up 1 vote down

This indicates that floats are slightly faster than doubles: http://www.herongyang.com/cs_b/performance.html

In general, any time you do a comparison on performance, you should take into account any special cases, like does using one type require additional conversions or data massaging? Those add up and can belie generic benchmarks like this.

link|flag
1  
I don't know if I'd trust some dude's benchmarks where the precision is coming down to less than a second. Why not write a bigger (and more real-world-ish benchmark with more different types of tests) and let it run for several minutes? – Nik Reiman Oct 1 '08 at 18:30
I tried this test and in Release build, they take the same processing time. – Joan Venge Jan 6 at 18:59

Your Answer

Get an OpenID
or

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