active questions tagged floating-point - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T00:46:01Zhttp://stackoverflow.com/feeds/tag/floating-pointhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1844733/is-this-c-function-written-in-poor-form4Is this C function written in poor form?Nate2009-12-04T03:54:24Z2009-12-11T22:16:13Z
<pre><code>char byte_to_ascii(char value_to_convert, volatile char *converted_value) {
if (value_to_convert < 10) {
return (value_to_convert + 48);
} else {
char a = value_to_convert / 10;
double x = fmod((double)value_to_convert, 10.0);
char b = (char)x;
a = a + 48;
b = b + 48;
*converted_value = a;
*(converted_value+1) = b;
return 0;
}
}
</code></pre>
<p>The purpose of this function is to take an unsigned char value of 0 through 99 and return either it's ascii equivalent in the case it is 0-9 or manipulate a small global character array that can be referenced from the calling code following function completion. </p>
<p>I ask this question because two compilers from the same vendor interpret this code in different ways. </p>
<p>This code was written as a way to parse address bytes sent via RS485 into strings that can easily be passed to a send-lcd-string function. </p>
<p>This code is written for the PIC18 architecture (8 bit uC). </p>
<p>The problem is that the free/evaluation version of a particular compiler generates perfect assembly code that works while suffering a performance hit, but the paid and supposedly superior compiler generates code more efficiently at the expense of being able reference the addresses of all my byte arrays used to drive the graphics on my lcd display. </p>
<p>I know I'm putting lots of mud in the water by using a proprietary compiler for a less than typical architecture, but I hope someone out there has some suggestions. </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1883385/rounding-to-use-for-int-float-int-round-trip-conversion1Rounding to use for int -> float -> int round trip conversionTrevor Robinson2009-12-10T19:29:38Z2009-12-11T09:39:29Z
<p>I'm writing a set of numeric type conversion functions for a database engine, and I'm concerned about the behavior of converting large integral floating-point values to integer types with greater precision.</p>
<p>Take for example converting a 32-bit int to a 32-bit single-precision float. The 23-bit significand of the float yields about 7 decimal digits of precision, so converting any int with more than about 7 digits will result in a loss of precision (which is fine and expected). However, when you convert such a float back to an int, you end up with artifacts of its binary representation in the low-order digits:</p>
<pre><code>#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int a = 2147483000;
cout << a << endl;
float f = (float)a;
cout << setprecision(10) << f << endl;
int b = (int)f;
cout << b << endl;
return 0;
}
</code></pre>
<p>This prints:</p>
<pre><code>2147483000
2147483008
2147483008
</code></pre>
<p>The trailing 008 is beyond the precision of the float, and therefore seems undesirable to retain in the int, since in a database application, users are primarily concerned with decimal representation, and trailing 0's are used to indicate insignificant digits.</p>
<p>So my questions are: Are there any well-known existing systems that perform decimal significant digit rounding in float -> int (or double -> long long) conversions, and are there any well-known, efficient algorithms for doing so?</p>
<p>(Note: I'm aware that some systems have decimal floating-point types, such as those defined by <a href="http://en.wikipedia.org/wiki/IEEE%5F754-2008" rel="nofollow">IEEE 754-2008</a>. However, they don't have mainstream hardware support and aren't built into C/C++. I might want to support them down the road, but I still need to handle binary floats intuitively.)</p>
http://stackoverflow.com/questions/697249/why-1-0f-0-0000000171785715f-returns-1f1Why 1.0f + 0.0000000171785715f returns 1f ?Trap2009-03-30T13:41:25Z2009-12-09T13:05:42Z
<p>After one hour of trying to find a bug in my code I've finally found the reason. I was trying to add a very small float to 1f, but nothing was happening. While trying to figure out why I found that adding that small float to 0f worked perfectly.</p>
<p>Why is this happening?
Does this have to do with 'orders of magnitude'?
Is there any workaround to this problem?</p>
<p>Thanks in advance.</p>
<p>Edit:</p>
<p>Changing to double precision or decimal is not an option at the moment.</p>
http://stackoverflow.com/questions/1868747/single-vs-double-datatypes1Single vs Double datatypesEverett2009-12-08T18:00:28Z2009-12-08T18:38:31Z
<p>Are there any situations where it would make more sense to use a single datatype instead of a double? From my searching, the disadvantage to a double is that it requires more space, which isn't a problem for most applications. In that case, should all floating point numbers be doubles?</p>
<p>A little background info:
I'm working with an application that deals with a lot of data about coordinates and chemicals. A few customers have noticed that when importing spreadsheets of data, some values with high precision are rounded down the precision of a single.</p>
http://stackoverflow.com/questions/1863879/checking-to-ensure-all-values-in-a-field-are-integers-in-mysql0checking to ensure all values in a field are integers in MySQLDarryl Hein2009-12-08T00:54:12Z2009-12-08T01:05:50Z
<p>I have a column that is currently a floating-point number and I need to check if all the values in the column are integers. What's the easiest way to do this?</p>
http://stackoverflow.com/questions/1863602/floating-point-formatting-in-printf3Floating point formatting in printf()sfactor2009-12-07T23:22:11Z2009-12-08T00:55:06Z
<p>i have array of floats where data are stored with varying decimal points so some are 123.40000, 123.45000, 123.45600...now if i want to print these values in the string without the 0s in the end in printf() so that they are 123.4, 123.45, 123.456, without those 0s in the end. is this possible? if so how?</p>
http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub3Is there a way to get the number of places after the decimal point in a java double?Electrons_Ahoy2009-12-04T20:04:56Z2009-12-07T22:16:25Z
<p>I'm working on a Java/Groovy program. I have a double variable that holds a number that was typed in by a user. What I really want to know is how many numbers the user typed to the right of the decimal place. Something like:</p>
<pre><code>double num = 3.14
num.getPlaces() == 2
</code></pre>
<p>Of course, you can't do this with a double since that's using IEEE floating points and it's all an approximation.</p>
<p>Assuming that I can't get at the string the user typed, but only have access to the double the value has been stored in, is there a way I can scrub that double though a BigDecimal or somesuch to get the "real" number of decimal places? (When the double gets displayed on the screen, it gets it right, so I assume there is a way to at least guess well?)</p>
http://stackoverflow.com/questions/56947/how-is-floating-point-stored-when-does-it-matter4How is floating point stored? When does it matter?Adam Davis2008-09-11T15:45:13Z2009-12-07T21:42:58Z
<p>In follow up to <a href="http://beta.stackoverflow.com/questions/56820/round-in-python-doesnt-seem-to-be-rounding-properly" rel="nofollow">this question</a>, it appears that some numbers cannot be represented by floating point at all, and instead are approximated.</p>
<p>How are floating point numbers stored?</p>
<p>Is there a common standard for the different sizes?</p>
<p>What kind of gotchas do I need to watch out for if I use floating point?</p>
<p>Are they cross-language compatible (ie, what conversions do I need to deal with to send a floating point number from a python program to a C program over TCP/IP)?</p>
<p>-Adam</p>
http://stackoverflow.com/questions/1853734/a-floating-point-array-in-c1A floating point array in Csfactor2009-12-05T22:49:04Z2009-12-06T11:14:39Z
<p>i am developing a code where i have to load floating point values stored in each line at a time in a text file...i loaded each of these data into a array of floats using fscanf()...however i found that the floating points were stored in a different way, example 407.18 was stored as 407.179993, 414.35 as 414.350006...now i am stuck because it is absolutely important that the numbers be stored in the form they were in the file but here it seems to be different even though essentially its the same....how do i get the numbers to store in the original form?</p>
http://stackoverflow.com/questions/1846311/float-variable-format0Float Variable formatMuhammad Akhtar2009-12-04T11:11:11Z2009-12-04T12:23:53Z
<p>I need to format float value and I only need 2 numbers after point and should be rounded value</p>
<pre><code> float first = 7, Second = 3,result;
result = first / Second; // result contain 2.33333325 since I need like 2.33
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1845998/sum-diff-problem-bug-in-xslt-1-00Sum diff problem/bug in XSLT 1.0Riri2009-12-04T10:02:05Z2009-12-04T12:05:33Z
<p>I have this XML data and try and make a sum of it using the XSLT snippet below. </p>
<p><strong>Xml</strong></p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<values>
<value>159.14</value>
<value>-2572.50</value>
<value>-2572.50</value>
<value>2572.50</value>
<value>2572.50</value>
<value>-159.14</value>
</values>
</code></pre>
<p><strong>Xslt</strong></p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:value-of select="sum(values/value)"/>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>In my world the value should then be <strong>0</strong> but it ends up being <strong>-0.0000000000005684341886080801</strong></p>
<p>Run it in Visual Studio and see for yourself. <strong><em>Why?</em></strong> is this happening?</p>
http://stackoverflow.com/questions/1838808/how-do-i-set-the-floating-point-precision-in-perl3How do I set the floating point precision in Perl?Igor Oks2009-12-03T09:41:27Z2009-12-03T16:52:45Z
<p>Is there a way to set Perl script's floating point precision (to 3 digits), without having to change it specifically for every variable?</p>
<p>Something similar to TCL's:</p>
<pre><code>global tcl_precision
set tcl_precision 3
</code></pre>
http://stackoverflow.com/questions/1832335/does-math-rounddouble-decimal-always-return-consistent-results3Does Math.Round(double, decimal) always return consistent results.Joe2009-12-02T11:25:27Z2009-12-02T16:55:47Z
<p>Of course one should never compare floating point values that result from a calculation for equality, but always use a small tolerance, e.g.:</p>
<pre><code>double value1 = ...
double value2 = ...
if (Math.Abs(value1 - value2) < tolerance * Math.Abs(value1))
{
... values are close enough
}
</code></pre>
<p>But if I use Math.Round can I always be sure that the resulting value will be consistent, i.e. will the following Assert always succeed, even when the rounded value is a value that can't be represented exactly by a double?</p>
<pre><code>public static void TestRound(double value1, double value2, int decimals)
{
double roundedValue1 = Math.Round(value1, decimals);
double roundedValue2 = Math.Round(value2, decimals);
string format = "N" + decimals.ToString();
if (roundedValue1.ToString(format) == roundedValue2.ToString(format))
{
// They rounded to the same value, was the rounding exact?
Debug.Assert(roundedValue1 == roundedValue2);
}
}
</code></pre>
<p>If not please provide a counterexample.</p>
<p><strong>EDIT</strong></p>
<p>Thanks to <a href="http://stackoverflow.com/questions/1832335/does-math-rounddouble-decimal-always-return-consistent-results/1832639#1832639">astander</a> for a counterexample generated by brute force that proves the result is not "consistent" in the general case. This counterexample has 16 significant digits in the rounded result - it also fails in the same way when scaled thus:</p>
<pre><code> double value1 = 10546080000034341D;
double value2 = 10546080000034257D;
int decimals = 0;
TestRound(value1, value2, decimals);
</code></pre>
<p>However I'd also be interested in a more mathematical explanation. Bonus upvotes for any of the more mathematical Stackoverflowers who can do any of the following:</p>
<ul>
<li><p>Find a counterexample where the rounded result has fewer than 16 significant digits.</p></li>
<li><p>Identify a range of values for which the rounded result <strong>will</strong> always be "consistent" as defined here (e.g. all values where the number of significant digits in the rounded result is < N).</p></li>
<li><p>Provide an algorithmic method to generate counterexamples.</p></li>
</ul>
http://stackoverflow.com/questions/1797806/parsing-a-hex-formated-dec-32-bit-single-precision-floating-point-value-in-python1Parsing a hex formated DEC 32 bit single precision floating point value in pythonKristofer2009-11-25T15:43:56Z2009-11-30T11:29:03Z
<p>I'm having problems parsing a hex formatted DEC 32bit single precision floating point value in python, the value I'm parsing is represented as D44393DB in hex. The original floating point value is ~108, read from a display of the sending unit.</p>
<p>The format is specified as:
1bit sign + 8bit exponent + 23bit mantissa.
Byte 2 contains the sign bit + the 7 most significant bits of the exponent
Byte 1 contains the least significant bit of the exponent + the starting most significant bits of the mantissa.</p>
<p>The only thing I have found that differs in the two formats is the bias of the exponent which is 128 in DEC32 and 127 in IEEE-754 (<a href="http://www.irig106.org/docs/106-07/appendixO.pdf" rel="nofollow">http://www.irig106.org/docs/106-07/appendixO.pdf</a>)</p>
<p>Using <a href="http://babbage.cs.qc.edu/IEEE-754/32bit.html" rel="nofollow">http://babbage.cs.qc.edu/IEEE-754/32bit.html</a> does not give the expected result.</p>
<p>/Kristofer</p>
http://stackoverflow.com/questions/1809381/break-on-nans-or-infs0Break on NaNs or infsstatic_rtti2009-11-27T15:35:22Z2009-11-28T11:35:14Z
<p>Hello all,</p>
<p>It is often hard to find the origin of a NaN, since it can happen at any step of a computation and propagate itself.
So is it possible to make a C++ program halt when a computation returns NaN or inf? The best in my opinion would be to have a crash with a nice error message:</p>
<pre><code>Foo: NaN encoutered at Foo.c:624
</code></pre>
<p>Is something like this possible? Do you have a better solution? How do you debug NaN problems?</p>
<p>EDIT: Precisions: I'm working with GCC under Linux.</p>
http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point0Standard library - higher-precision floating point?Gregg Lind2009-11-27T23:37:42Z2009-11-27T23:57:18Z
<p>So, I'm having some precision issues in Python.</p>
<p>I would like to calculate functions like this:</p>
<pre><code>P(x,y) = exp(-x)/(exp(-x) + exp(-y))
</code></pre>
<p>Where x and y might be >1000. Python's math.exp(-1000) (in 2.6 at least!) doesn't have enough floating point precision to handle this. </p>
<ol>
<li>this form looks like logistic / logit / log-odds, but it's not, right? Is there some algebraic simplification I'm missing here?</li>
<li>I know about Decimal, but am not sure if it applies here</li>
<li>looks like homework, but it's not, I promise!</li>
</ol>
<p>(Also, I'm open to titles! I couldn't think of a good one for this question!)</p>
http://stackoverflow.com/questions/1807737/nan-problem-in-java1NaN problem in Javasanjana2009-11-27T09:45:16Z2009-11-27T10:07:04Z
<p>I am converting four bytes to float and I'm getting <code>NaN</code> as a result, but I want the value <code>0.0</code>. What am I doing wrong?</p>
<p>This is my code:</p>
<pre><code>public class abc
{
public static void main(String[] args)
{
int[] arry = { 255, 255, 255, 255 };
int num = ((arry[0] << 24) & 0xFF000000) | ((arry[1] << 16) & 0xFF0000)
| ((arry[2] << 8) & 0xFF00) | (arry[3] & 0xFF);
float f = Float.intBitsToFloat(num);
f= (float) ((f < 0 ? Math.ceil(f * 10) : Math.floor(f * 10)) / 10);
System.out.println(f);
}
}
</code></pre>
http://stackoverflow.com/questions/1801307/sqlite-and-python-floats2Sqlite, and Python floatsRecursion2009-11-26T02:55:34Z2009-11-26T23:51:24Z
<p>I'm creating a financial app and it seems my floats in sqlite are floating around. Sometimes a 4.0 will be a 4.000009, and a 6.0 will be a 6.00006, things like that. How can I make these more exact and not affect my financial calculations?</p>
<p>Values are coming from Python if that matters. Not sure which area the messed up numbers are coming from. </p>
http://stackoverflow.com/questions/1786137/c-serialization-of-the-floating-point-numbers-floats-doubles2C - Serialization of the floating point numbers (floats, doubles)psihodelia2009-11-23T21:32:17Z2009-11-26T02:12:53Z
<p>How to convert a floating point number into a sequence of bytes so that it can be persisted in a file? Such algorithm must be fast and highly portable. It must allow also the opposite operation, deserialization. It would be nice if only very tiny excess of bits per value (persistent space) is required.</p>
http://stackoverflow.com/questions/1789408/can-doubles-be-used-to-represent-a-64-bit-number-without-loss-of-precision2Can doubles be used to represent a 64 bit number without loss of precisionKop2009-11-24T11:16:17Z2009-11-24T21:57:37Z
<p>I want to use lua (that internally uses only doubles) to represent a integer that can't have rounding errors between 0 and 2^64-1 or terrible things will happen.</p>
<p>Is it possible to do so? </p>
http://stackoverflow.com/questions/1780489/haskell-minimum-maximum-double-constant2Haskell minimum/maximum Double ConstantClaudiu2009-11-23T00:04:24Z2009-11-23T02:45:25Z
<p>Is there any way in Haskell to get the constant that is the largest and smallest possible positive rational number greater than zero that can be represented by doubles?</p>
http://stackoverflow.com/questions/1779608/integer-automatically-converting-to-double-but-not-float0integer automatically converting to double but not floatajay2009-11-22T18:57:35Z2009-11-22T19:02:19Z
<p>Hi all,</p>
<p>I have a function like below:</p>
<p>void add(int&,float&,float&);</p>
<p>and when I call:</p>
<p>add(1,30,30)</p>
<p>it does not compile.</p>
<p>add(1,30.0,30.0) also does not compile.</p>
<p>It seems that in both cases, it gets implicitly converted to double instead of float.</p>
<p>So, do you suggest that it is better to re-define add as add(int&,double&,double&)? Is there any other way of passing making add(1,30,30) work other than casting 30 with float or assigning like "float x = 30 ; add(1,x,x)" ?</p>
<p>I used to think that the compiler will be able to detect that float is a super-set of integer and so would compile it successfully. Apparently, that is not the case.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1316044/rspec-should-change-with-floating-point0Rspec 'should change' with floating pointBogdan Gusiev2009-08-22T14:05:36Z2009-11-22T17:12:47Z
<p>Is it possible to use RSpec <code>.should(change(...)).by(...)</code> with float numbers and set the compare precision like this:</p>
<pre><code>lambda { ...}.should change(unit, :price).by(12.151, 10e-5)
</code></pre>
<p>Thanks,</p>
http://stackoverflow.com/questions/1778368/python-float-str-float-weirdness1Python float - str - float weirdnessKlerk2009-11-22T10:28:18Z2009-11-22T12:15:11Z
<p><code>>>></code> float(str(0.65000000000000002))</p>
<p>0.65000000000000002</p>
<p><code>>>></code> float(str(0.47000000000000003))</p>
<p>0.46999999999999997 ???</p>
<p>What is going on here and how do I convert 0.47000000000000003 to string and the resultant value back to float?</p>
<p>I am using python 2.5.4 on windows.</p>
http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-12A little diversion into floating point (im)precision, part 1Chris Jester-Young2008-08-04T06:21:38Z2009-11-20T20:37:54Z
<p>Most mathematicians agree that e ** (πi) + 1 = 0. However, most floating point implementations disagree. How well can we settle this dispute?</p>
<p>I'm keen to hear about different languages and implementations, and various methods to make the result as close to zero as possible. Be creative!</p>
http://stackoverflow.com/questions/612507/what-are-the-applications-benefits-of-an-80-bit-extended-precision-data-type3What are the applications/benefits of an 80-bit extended precision data type?gnovice2009-03-04T21:25:45Z2009-11-20T18:53:24Z
<p>Yeah, I meant to say <em>80-bit</em>. That's not a typo...</p>
<p>My experience with floating point variables has always involved 4-byte multiples, like singles (32 bit), doubles (64 bit), and long doubles (which I've seen refered to as either 96-bit or 128-bit). That's why I was a bit confused when I came across an <a href="http://en.wikipedia.org/wiki/Extended%5Fprecision" rel="nofollow">80-bit extended precision data type</a> while I was working on some code to read and write to <a href="http://en.wikipedia.org/wiki/Audio%5FInterchange%5FFile%5FFormat" rel="nofollow">AIFF (Audio Interchange File Format) files</a>: an extended precision variable was chosen to store the sampling rate of the audio track.</p>
<p>When I skimmed through Wikipedia, I found the link above along with a brief mention of 80-bit formats in the <a href="http://en.wikipedia.org/wiki/IEEE%5F754-1985" rel="nofollow">IEEE 754-1985 standard</a> summary (but not in the <a href="http://en.wikipedia.org/wiki/IEEE%5F754" rel="nofollow">IEEE 754-2008 standard</a> summary). It appears that on certain architectures "extended" and "long double" are synonymous.</p>
<p>One thing I haven't come across are specific applications that make use of extended precision data types (except for, of course, AIFF file sampling rates). This led me to wonder:</p>
<ul>
<li>Has anyone come across a situation where extended precision was necessary/beneficial for some programming application?</li>
<li>What are the benefits of an 80-bit floating point number, other than the obvious "it's a little more precision than a double but fewer bytes than most implementations of a long double"?</li>
<li>Is its applicability waning?</li>
</ul>
http://stackoverflow.com/questions/1726254/why-is-javas-double-comparedouble-double-implemented-the-way-it-is2Why is Java's Double.compare(double, double) implemented the way it is?Nimnio2009-11-12T23:55:45Z2009-11-19T20:09:44Z
<p>I was looking at the implementation of compare(double, double) in the Java standard library (6). It reads:</p>
<pre><code>public static int compare(double d1, double d2) {
if (d1 < d2)
return -1; // Neither val is NaN, thisVal is smaller
if (d1 > d2)
return 1; // Neither val is NaN, thisVal is larger
long thisBits = Double.doubleToLongBits(d1);
long anotherBits = Double.doubleToLongBits(d2);
return (thisBits == anotherBits ? 0 : // Values are equal
(thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN)
1)); // (0.0, -0.0) or (NaN, !NaN)
}
</code></pre>
<p>What are the merits of this implementation?</p>
http://stackoverflow.com/questions/1678766/how-are-float-numbers-represented-in-binary-string0How are float numbers represented in binary string? [closed]thephpdeveloper2009-11-05T06:52:54Z2009-11-19T01:07:15Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/56947/how-is-floating-point-stored-when-does-it-matter">How is floating point stored? When does it matter?</a> </p>
</blockquote>
<p>How does float numbers represented in a binary string in any programming language or generally?</p>
<p>Because I understand that positive whole numbers are converted to binary by converting base with MSB 0, and negative whole number with a MSB 1.</p>
<p>But how do we represent exact float numbers? They have various decimal places and so on.</p>
<p>Float numbers can be in the form of <code>0.2222</code>, <code>3.1428579</code>, <code>10232312.02312</code>, <code>5e-6</code>.</p>
<p>And binary string is something like <code>1001 1101 0010 0101</code>.</p>
<p>Please comment before voting.</p>
http://stackoverflow.com/questions/840081/what-does-floating-point-error-1-j-mean3What does floating point error -1.#J mean?Srekel2009-05-08T14:32:48Z2009-11-18T12:17:33Z
<p>Recently, sometimes (rarely) when we export data from our application, the export log contains float values that look like "-1.#J". I haven't been able to reproduce it so I don't know what the float looks like in binary, or how Visual Studio displays it.</p>
<p>I tried looking at the source code for printf, but didn't find anything (not 100% sure I looked at the right version though...).</p>
<p>I've tried googling but google throws away any #, it seems. And I can't find any lists of float errors.</p>
http://stackoverflow.com/questions/1752140/what-is-faster-on-division-doubles-floats-uint32-uint64-in-c-c1What is faster on division? doubles / floats / UInt32 / UInt64 ? in C++/Cboytheo2009-11-17T21:57:54Z2009-11-18T04:43:08Z
<p>Hi everyone,</p>
<p>I did some speed testing to figure out what is the fastest, when doing multiplication or division on numbers. I had to really work hard to defeat the optimiser. I got nonsensical results such as a massive loop operating in 2 microseconds, or that multiplication was the same speed as division (if only that were true).</p>
<p>After I finally worked hard enough to defeat enough of the compiler optimisations, while still letting it optimise for speed, I got these speed results. They maybe of interest to someone else?</p>
<p>If my test is STILL FLAWED, let me know, but be kind seeing as I just spend two hours writing this crap :P</p>
<pre><code>64 time: 3826718 us
32 time: 2476484 us
D(mul) time: 936524 us
D(div) time: 3614857 us
S time: 1506020 us
</code></pre>
<p>"Multiplying to divide" using doubles seems the fastest way to do a division, followed by integer division. I did not test the accuracy of division. Could it be that "proper division" is more accurate? I have no desire to find out after these speed test results as I'll just be using integer division on a base 10 constant and letting my compiler optimise it for me ;) (and not defeating it's optimisations either).</p>
<p>Here's the code I used to get the results:</p>
<pre><code>#include <iostream>
int Run(int bla, int div, int add, int minus) {
// these parameters are to force the compiler to not be able to optimise away the
// multiplications and divides :)
long LoopMax = 100000000;
uint32_t Origbla32 = 1000000000;
long i = 0;
uint32_t bla32 = Origbla32;
uint32_t div32 = div;
clock_t Time32 = clock();
for (i = 0; i < LoopMax; i++) {
div32 += add;
div32 -= minus;
bla32 = bla32 / div32;
bla32 += bla;
bla32 = bla32 * div32;
}
Time32 = clock() - Time32;
uint64_t bla64 = bla32;
clock_t Time64 = clock();
uint64_t div64 = div;
for (long i = 0; i < LoopMax; i++) {
div64 += add;
div64 -= minus;
bla64 = bla64 / div64;
bla64 += bla;
bla64 = bla64 * div64;
}
Time64 = clock() - Time64;
double blaDMul = Origbla32;
double multodiv = 1.0 / (double)div;
double multomul = div;
clock_t TimeDMul = clock();
for (i = 0; i < LoopMax; i++) {
multodiv += add;
multomul -= minus;
blaDMul = blaDMul * multodiv;
blaDMul += bla;
blaDMul = blaDMul * multomul;
}
TimeDMul = clock() - TimeDMul;
double blaDDiv = Origbla32;
clock_t TimeDDiv = clock();
for (i = 0; i < LoopMax; i++) {
multodiv += add;
multomul -= minus;
blaDDiv = blaDDiv / multomul;
blaDDiv += bla;
blaDDiv = blaDDiv / multodiv;
}
TimeDDiv = clock() - TimeDDiv;
float blaS = Origbla32;
float divS = div;
clock_t TimeS = clock();
for (i = 0; i < LoopMax; i++) {
divS += add;
divS -= minus;
blaS = blaS / divS;
blaS += bla;
blaS = blaS * divS;
}
TimeS = clock() - TimeS;
printf("64 time: %i us (%i)\n", (int)Time64, (int)bla64);
printf("32 time: %i us (%i)\n", (int)Time32, bla32);
printf("D(mul) time: %i us (%f)\n", (int)TimeDMul, blaDMul);
printf("D(div) time: %i us (%f)\n", (int)TimeDDiv, blaDDiv);
printf("S time: %i us (%f)\n", (int)TimeS, blaS);
return 0;
}
int main(int argc, char* const argv[]) {
Run(0, 10, 0, 0); // adds and minuses 0 so it doesn't affect the math, only kills the opts
return 0;
}
</code></pre>