Float vs Double Performance - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T19:00:05Zhttp://stackoverflow.com/feeds/question/417568http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/417568/float-vs-double-performance5Float vs Double PerformanceJoan Venge2009-01-06T18:09:05Z2009-06-23T17:54:52Z
<p>I did some timing tests and also read some articles like <a href="http://www.cincomsmalltalk.com/userblogs/buck/blogView?showComments=true&title=Smalltalk%2Bperformance%2Bvs.%2BC%23&entry=3354595110#3354595110" rel="nofollow">this one</a> (last comment),and it looks like in Release build, float and double values take the same amount of processing time.</p>
<p>How is this possible? When float is less precise and smaller compared to double values, how can the CLR get doubles into the same processing time?</p>
<p><hr /></p>
<h3>Edit:</h3>
<p>Exact duplicate of "<a href="http://stackoverflow.com/questions/158889/are-doubles-faster-than-floats-in-c">Are doubles faster than floats in c</a>"</p>
http://stackoverflow.com/questions/417568/float-vs-double-performance/417591#41759113Answer by P Daddy for Float vs Double PerformanceP Daddy2009-01-06T18:15:38Z2009-01-06T18:15:38Z<p>On x86 processors, at least, <code>float</code> and <code>double</code> will each be converted to a 10-byte real by the FPU for processing. The FPU doesn't have separate processing units for the different floating-point types it supports.</p>
<p>The age-old advice that <code>float</code> is faster than <code>double</code> applied 100 years ago when most CPUs didn't have built-in FPUs (and few people had separate FPU chips), so most floating-point manipulation was done in software. On these machines (which were powered by steam generated by the lava pits), it <em>was</em> faster to use <code>float</code>s. Now the only real benefit to <code>float</code>s is that they take up less space (which only matters if you have millions of them).</p>
http://stackoverflow.com/questions/417568/float-vs-double-performance/417603#4176030Answer by Cruachan for Float vs Double PerformanceCruachan2009-01-06T18:20:13Z2009-01-06T18:20:13Z<p>There are still some cases where floats are prefered however - with OpenGL coding for example it's far more common to use the GLFloat datatype (generally mapped directly to 16 bit float) as it is more efficient on most GPU's than GLDouble</p>