vote up 3 vote down star
1

Sometimes I see and have used the following variation for a fast divide in C++ with floating point numbers.

// orig loop
double y = 44100.0;
for(int i=0; i<10000; ++i) {
double z = x / y;
}

// alternative
double y = 44100;
double y_div = 1.0 / y;

for(int i=0; i<10000; ++i) {
double z = x * y_div;
}

But someone hinted recently that this might not be the most accurate way.

Any thoughts?

flag
huh? This doesn't make sense as written. – mwigdahl May 22 at 20:34
Can you clear this code example up a bit? – BobbyShaftoe May 22 at 20:35
given that the loop body does not use "i", why not remove the loop completely? – lothar May 22 at 20:37
Oh, and I hate to throw in "premature optimization" again, but why do you think you need to focus on such low level "optimization" in the first place? Did a profiling run determine this as the bottleneck? I seriously doubt that. – lothar May 22 at 20:40
Sorry, first post. I was wrestling with the formatting. lothar, divides are still quit costly especially if you are running said loop several hundred thousand times a second. This is not premature optimzation. – stephen blinkhorn May 22 at 20:46

6 Answers

vote up 8 vote down check

On just about every CPU, a floating point divide is several times as expensive as a floating point multiply, so multiplying by the inverse of your divisor is a good optimization. The downside is that there is a possibility that you will lose a very small portion of accuracy on certain processors - eg, on modern x86 processors, 64-bit float operations are actually internally computed using 80 bits when using the default FPU mode, and storing it off in a variable will cause those extra precision bits to be truncated according to your FPU rounding mode (which defaults to nearest). This only really matters if you are concatenating many float operations and have to worry about the error accumulation.

link|flag
"storing it off in a variable will cause" - is it guaranteed to cause that, or are compilers allowed to carry double values as represented in the FPU where possible? Also you can probably use long double if rounding worries you. – Steve Jessop May 22 at 22:38
I'm not 100% certain, but it depends on the exact code. The x87 FPU register stack holds the full 80 bits per value, so if the compiler can keep the intermediate inverse-divisor value on the FPU register stack, then no precision should be lost. However, the compiler may not be able to keep that value in an FPU register stack and will have to store it on the program stack, at which point the precision will be truncated to 64 bits. If that is a concern though, the assembly really should be hand coded, instead of being left up to the compiler. – Not Sure May 23 at 0:02
FWIW: m68k series processors had opcodes for storing, retrieving and manipulating 80bit floats. Cost some speed. – dmckee May 23 at 3:27
vote up 5 vote down

Wikipedia agrees that this can be faster. The linked article also contains several other fast division algorithms that might be of interest.

I would guess that any industrial-strength modern compiler will make that optimization for you if it is going to profit you at all.

link|flag
Industrial-strength compilers will not make optimizations like that, if they may change program output; after all, an optimization that gives the wrong answer is a poor optimization. Because we have no language-level mechanism for specifying the precision we care about, the compiler may only assume we care about all of it. – Tom May 24 at 1:58
vote up 2 vote down

Your original

// original loop:
double y = 44100.0;

for(int i=0; i<10000; ++i) {
    double z = x / y;
}

can easily be optimized to

// haha:
double y = 44100.0;
double z = x / y;

and the performance is pretty nice. ;-)

EDIT: People keep voting this down, so here's the not so funny version:

If there were a general way to make division faster for all cases, don't you think compiler writers might have happened upon it by now? Of course they would have done. Also, some of the people doing FPU circuits aren't exactly stupid, either.

So the only way you're going to get better performance is to know what specific situation you have at hand and doing optimal code for that. Most likely this is a complete waste of your time, because your program is slow for some other reason such as performing math on loop invariants. Go find a better algorithm instead.

link|flag
wow that's an amazing optimization. so, obviously, I was doing pseudo code and x would vary over time. – stephen blinkhorn May 22 at 20:49
That's not right, 'z' can't be seen outside the loop scope... :-P – TomWij May 22 at 20:50
humor is good and all, but I'm sure you'll get some great answers here in addition to my joke answer. – dwc May 22 at 20:52
You're right. Using the -O3 flag in GCC results in zero performance gain. Without the flag the optimization it is about 5-6 times faster. I've seen exceptional programmers avoiding divides in loops but you are right again - the only way to benchmark is to do specific tests on specific data. But, if you read the question I actually posted you'll find that I asked about accuracy not performance :) – stephen blinkhorn May 22 at 22:11
Good point you have there. :) – dwc May 22 at 23:05
show 1 more comment
vote up 1 vote down

multiplication is faster than division so the second method is faster. It might be slightly less accurate but unless you are doing hard core numerics the level of accuracy should be more than enough.

link|flag
Thanks, I'm doing high quality audio processing where accuracy is important. – stephen blinkhorn May 22 at 20:44
vote up 0 vote down

I are looping 10,000 times simply to make the code take long enough to measure the time easily? Or do you have 10000 numbers to divide by the same number? If the former, put the "y_div = 1.0 / y;" inside the loop, because it's part of the operation.

If the latter, yes, floating point multiplication is generally faster than division. Don't change your code from the obvious to the arcane based on guesses, though. Benchmark first to find slow spots, and then optimize those (and take measurements before and after to make sure your idea actually causes an improvement)

link|flag
The whole point of doing it outside the loop is that you only need to do it once - multiplication by the reciprocal is (floating point errors aside) equivalent to division. – Andy Mikula May 22 at 20:54
vote up -1 vote down

On old CPUs like the 80286, floating point maths was abysmally slow and we employed lots of trickiness to speed things up.

On modern CPUs floating point maths is blindingly fast and optimising compilers can generally do wonders with fine-tuning things.

It is almost never worth the effort to employ little micro-optimisations like that.

Try to make your code simple and idiot-proof. Only of you find a real bottleneck (using a profiler) would you think of optimisations in your floating point calculations.

link|flag
On modern CPUs like the Core2 Duo, floating-point math still takes non-zero time, and hence is still worth optimizing for CPU-bound problems. – Tom May 24 at 2:01
The question was about precision loss. OP works obviously on an audio software (44100 Hz), and when it makes any digital signal processing software, like the one I used to work on, 2 to 10 times faster, then all so called little micro optimisations not only worth the effort, but are critical. – Jem May 24 at 2:30
Unless you've profiled the code you don't know if you have a bottleneck. If you are doing millions of computations, you need to consider how you access your data. By optimising that you can often avoid page faults that are probably much slower than the computations. Even better is if you can improve your algorithm to reduce the number of computations. You can probably find cases where changing "divides" to "multiplies" improves performance, but they will be pretty rare. Your number one concern is to write maintainable code - and little tricks are not your friend when you're doing that. – Michael J May 24 at 7:53
No, I strongly disagree. Everyone in charge of a heavy numeric computation software involving floating point must know and use this way to divide. It does not degrade the code maintainability. Your number one concern here is the number of voices you can simultaneously handle, or the number of seconds your customers have to wait. And even if you had bottlenecks and page faults (which were probably eliminated long ago), why wasting CPU cycles that could be exploited by other thread / processes, when you can FOR FREE make your processing units significantly faster ? – Jem May 25 at 23:04

Your Answer

Get an OpenID
or

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