<div dir="ltr">@Cameron, you appear to be confused.<br><br>Yes, Delphi uses a standard implementation of single and double types - the IEEE standards.  But I don&#39;t know where you got the idea that this standard involves a naive pairing of two ints (of any size).  Floating point types are <b>far</b> more complex than that.  e.g. the internal representation of the value &quot;1&quot; in Double is not (0x00000001).(0x00000000) but (0x3fff0000).(0x00000000)<br>
<br>How would I describe it otherwise ?  Why, the same way that IEEE 754 describes it of course.  ;)<br><br><a href="http://en.wikipedia.org/wiki/Double-precision_floating-point_format">http://en.wikipedia.org/wiki/Double-precision_floating-point_format</a><br>
<br>Single is similarly not a naive pairing of two int16&#39;s.  In fact, the closest I can even think that Delphi has to such a limited implementation for decimal values is the Curreny type, but even that isn&#39;t a &quot;pair of integers&quot;, rather a straightforward &quot;fixed point&quot; with a scalar of 10,000, yielding 4 fixed decimal places.<br>
<br><br><div>Back to the OP...<br><br>If you are using Delphi 7 and were thinking of using Single precision, then I strongly recommend that you do some tests with some representative sample data to establish the most efficient approach, but as a rule of thumb I would expect to find that Single precision would be more efficient than Double (and in the older.Win32 compilers I wouldn&#39;t be surprised if these had an even greater performance advantage over Int64).  The question then is whether Single precision is adequate for your needs or if you need the additional capacity of Double.<br>
<br>If you are inclined toward Int64 for some reason, be aware that there was a bug in the Delphi Int64 arithmetic in older Delphi versions.  The 32-bit compiler doesn&#39;t use hardware op-codes for Int64 operations but emulates these in software, which is why Int64 performs less well than Double:<br>
<br>I&#39;m fairly sure this is the case even today (hence the comparative performance of Double and Int64 even in the XE4 32-bit compiler), but absolutely certain that it is the case with the older Delphi compilers.<br><br>
The details of the bug escape my memory right now, other than that it was a basic arithmetic error in the compiler emitted code (and something of an edge case), rather than a bug in an RTL function.  i.e. not something that can be easily avoided.<br>
<br>But I am sure your tests will show that Single or Double are more efficient anyway.</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On 17 August 2014 20:09, Cameron Hart <span dir="ltr">&lt;<a href="mailto:Cameron.Hart@flowsoftware.co.nz" target="_blank">Cameron.Hart@flowsoftware.co.nz</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div lang="EN-NZ" link="blue" vlink="purple">
<div>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">I’m confused now as I’m pretty sure Delphi uses a standard format to represent float (the same format used anywhere else for that matter).   In which case a
 float is essentially two int32 (or other int’s depending on the scale of the float).  Ie a single used two int16.<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">One int represented the mantissa the other the exponent (in essence the decimal portion).  Together they resulted in the floating point value.<u></u><u></u></span></p>

<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">How would you describe this otherwise?<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><b><span lang="EN-US" style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">From:</span></b><span lang="EN-US" style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;"> <a href="mailto:delphi-bounces@listserver.123.net.nz" target="_blank">delphi-bounces@listserver.123.net.nz</a> [mailto:<a href="mailto:delphi-bounces@listserver.123.net.nz" target="_blank">delphi-bounces@listserver.123.net.nz</a>]
<b>On Behalf Of </b>Jolyon Smith<br>
<b>Sent:</b> Sunday, 17 August 2014 12:54 p.m.</span></p><div class=""><br>
<b>To:</b> NZ Borland Developers Group - Delphi List<br>
<b>Subject:</b> Re: [DUG] Int64 or floating point faster?<u></u><u></u></div><p></p>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<p class="MsoNormal">That&#39;s curious.  Who are &quot;they&quot; ?  It doesn&#39;t sound like any floating point implementation I ever came across in Delphi (or anywhere else, for that matter).  O.o<u></u><u></u></p>
</div><div><div class="h5">
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><u></u> <u></u></p>
<div>
<p class="MsoNormal">On 17 August 2014 12:28, Pieter De Wit &lt;<a href="mailto:pieter@insync.za.net" target="_blank">pieter@insync.za.net</a>&gt; wrote:<u></u><u></u></p>
<div>
<div>
<p class="MsoNormal">Hi Jolyon,<br>
<br>
>From memory, they used 2 int32&#39;s to make a float - this could have been int16&#39;s - memory is very vague on this :) The one was used to represent the whole numbers and the other was to show the decimal numbers<br>
<br>
Cheers,<br>
<br>
Pieter<u></u><u></u></p>
<div>
<div>
<p class="MsoNormal"><br>
<br>
On 17/08/2014 12:05, Jolyon Smith wrote:<u></u><u></u></p>
</div>
</div>
</div>
<div>
<div>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<div>
<p class="MsoNormal">@Pieter - I don&#39;t understand what you mean when you say that &quot;float was int32.int32&quot;.  For starters, &quot;float&quot; is an imprecise term.  If you mean &quot;single&quot; then the entire value was always 32 bit in it&#39;s entirety.  If you mean double then
 it was always 64 bit.  What is this &quot;in32.int32&quot; type of which you speak ?  O.o<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><u></u> <u></u></p>
<div>
<p class="MsoNormal">On 17 August 2014 11:52, Jolyon Smith &lt;<a href="mailto:jsmith@deltics.co.nz" target="_blank">jsmith@deltics.co.nz</a>&gt; wrote:<u></u><u></u></p>
<div>
<p class="MsoNormal">I think there are too many variables involved to give an answer to this question without some of those variables being reduced to known values.<br>
<br>
e.g.  what hardware ?  what version of Delphi ?  x64 target or x86 ?  what precision of floating point ?<br>
<br>
Having said that, in a quick test knocked up in my Smoketest framework I found that Double comfortably outperforms Int64 when compiling for Win32 but that both Double and Int64 demonstrated improved performance when compiling for Win64 and that whilst Double
 still showed some advantage it was not as significant (and in some test runs the difference was negligible).<br>
<br>
If you are targeting FireMonkey you will have to bear in mind that the back-end compiler is different to the x86/x64 backend, so results obtained using the WinXX compilers will not necessarily be indicative of performance on the ARM or LLVM platforms.
<u></u><u></u></p>
<div>
<p class="MsoNormal"><br>
<br>
Conditions: <u></u><u></u></p>
<div>
<p class="MsoNormal"><br>
 - Delphi XE4<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"> - Running in a 64-bit Win 7 VM<u></u><u></u></p>
</div>
<div>
<div>
<p class="MsoNormal"> - No testing was done for correctness of the results.<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><u></u> <u></u></p>
</div>
</div>
</div>
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><u></u> <u></u></p>
<div>
<div>
<p class="MsoNormal">On 16 August 2014 15:30, Ross Levis &lt;<a href="mailto:ross@stationplaylist.com" target="_blank">ross@stationplaylist.com</a>&gt; wrote:<u></u><u></u></p>
</div>
<blockquote style="border:none;border-left:solid #cccccc 1.0pt;padding:0cm 0cm 0cm 6.0pt;margin-left:4.8pt;margin-right:0cm">
<div>
<div>
<div>
<p class="MsoNormal"><span style="color:#1f497d">Would I be correct that int64 multiplications would be faster than floating point in Delphi?  My app needs to do several million.</span><u></u><u></u></p>
<p class="MsoNormal"><span style="color:#1f497d"> </span><u></u><u></u></p>
</div>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">_______________________________________________<br>
NZ Borland Developers Group - Delphi mailing list<br>
Post: <a href="mailto:delphi@listserver.123.net.nz" target="_blank">delphi@listserver.123.net.nz</a><br>
Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi" target="_blank">http://delphi.org.nz/mailman/listinfo/delphi</a><br>
Unsubscribe: send an email to <a href="mailto:delphi-request@listserver.123.net.nz" target="_blank">
delphi-request@listserver.123.net.nz</a> with Subject: unsubscribe<u></u><u></u></p>
</div>
</blockquote>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><u></u> <u></u></p>
<pre>_______________________________________________<u></u><u></u></pre>
<pre>NZ Borland Developers Group - Delphi mailing list<u></u><u></u></pre>
<pre>Post: <a href="mailto:delphi@listserver.123.net.nz" target="_blank">delphi@listserver.123.net.nz</a><u></u><u></u></pre>
<pre>Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi" target="_blank">http://delphi.org.nz/mailman/listinfo/delphi</a><u></u><u></u></pre>
<pre>Unsubscribe: send an email to <a href="mailto:delphi-request@listserver.123.net.nz" target="_blank">delphi-request@listserver.123.net.nz</a> with Subject: unsubscribe<u></u><u></u></pre>
</blockquote>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
</div>
</div>
<p class="MsoNormal"><br>
_______________________________________________<br>
NZ Borland Developers Group - Delphi mailing list<br>
Post: <a href="mailto:delphi@listserver.123.net.nz" target="_blank">delphi@listserver.123.net.nz</a><br>
Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi" target="_blank">http://delphi.org.nz/mailman/listinfo/delphi</a><br>
Unsubscribe: send an email to <a href="mailto:delphi-request@listserver.123.net.nz" target="_blank">
delphi-request@listserver.123.net.nz</a> with Subject: unsubscribe<u></u><u></u></p>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
</div></div></div>
</div>

<br>_______________________________________________<br>
NZ Borland Developers Group - Delphi mailing list<br>
Post: <a href="mailto:delphi@listserver.123.net.nz">delphi@listserver.123.net.nz</a><br>
Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi" target="_blank">http://delphi.org.nz/mailman/listinfo/delphi</a><br>
Unsubscribe: send an email to <a href="mailto:delphi-request@listserver.123.net.nz">delphi-request@listserver.123.net.nz</a> with Subject: unsubscribe<br></blockquote></div><br></div>