vote up 5 vote down star
2

I'm doing a bit of coding, where I have to write this sort of code:

if( array[i]==false )
    array[i]=true;

I wonder if it should be re-written as

array[i]=true;

This raises the question: are comparisions faster than assignments?

What about differences from language to language? (contrast between java & cpp, eg.)

NOTE: I've heard that "premature optimization is the root of all evil." I don't think that applies here :)

flag

1  
unless you are writing a program for an embedded system with a very slow processor then you needn't worry. Even at that point you would be reluctant to hand-optimize – Aiden Bell May 26 at 12:35
Can array[i] be anything other than a bool? if not then the rewrite is correct. – Aiden Bell May 26 at 12:36
Yes, the array is a boolean array. – harshath.jr May 26 at 12:42
4  
To everyone posting "opinions" on what is faster and why, please stop. The ONLY way to know what's faster for a given compiler on a given processor is to benchmark it. Opinions don't count where something can be measured and tested. To the asker, this isn't something to worry about, but if you must, then test it over 1,000,000 iterations, get average times for several runs, change it, and see what the difference is. Theoretically one may be faster than the other, but for a primitive data type, they'll be practically identical. – Binary Worrier May 26 at 12:49
@Binary Worrier: How do you know that 1000000 iterations is correct size for the array? With modern processors avoiding cache misses is the important part, not counting instruction cycles. Thus the benchmark should run with realistic data size. – abababa22 May 27 at 15:00

8 Answers

vote up 10 vote down check

Well, since you say you're sure that this matters you should just write a test program and measure to find the difference.

Comparison can be faster if this code is executed on multiple variables allocated at scattered addresses in memory. With comparison you will only read data from memory to the processor cache, and if you don't change the variable value when the cache decides to to flush the line it will see that the line was not changed and there's no need to write it back to the memory. This can speed up execution.

link|flag
1  
Agreed, on the other hand some architectures also have a penalty for branching... Only true answer can be found by measuring. Or looking at the generated assembly code, to see if it changes at all (my guess is no). – kotlinski May 26 at 12:46
+1 for "measure" – Binary Worrier May 26 at 12:51
1  
Don't caches do this automatically? i.e. check if the data that's written is the same as the data that's there. – Jules May 27 at 16:34
@julesjacobs: Not sure if it checks for equality. It surely checks whether or not it has been updated, but I've never heard of it checking for the update to be an actual change. That's a good point to keep in mind. – sharptooth May 28 at 6:58
vote up 18 vote down

This isn't just premature optimization, this is micro-optimization, which is an irrelevant distraction.

Assuming your array is of boolean type then your comparison is unnecessary, which is the only relevant observation.

link|flag
1  
I agree..may be it will be good from readability point of view, but certainly not if the change is being done to 'impreove' the performance. – Naveen May 26 at 12:35
+1: I couldn't agree more – Binary Worrier May 26 at 12:50
vote up 0 vote down

I really wouldn't expect there to be any kind of noticeable performance difference for something as trivial as this so surely it comes down to what gives you clear, more readable code. I my opinion that would be always assigning true.

link|flag
Neither would I expect a performance difference. Its a matter of knowing the better choice from performance POV. – harshath.jr May 26 at 12:44
vote up 0 vote down

Might give this a try:

if(!array[i])
    array[i]=true;

But really the only way to know for sure is to profile, I'm sure pretty much any compiler would see the comparison to false as unnecessary and optimize it out.

link|flag
If your compiler is any good this will produce identical machine code. – Jules May 27 at 16:36
vote up 0 vote down

It all depends on the data type. Assigning booleans is faster than first comparing them. But that may not be true for larger value-based datatypes.

link|flag
vote up 9 vote down

Edit: I wrote a script in PHP. I just noticed that there was a glaring error in it meaning the best-case runtime was being calculated incorrectly (scary that nobody else noticed!)

Best case just beats outright assignment but worst case is a lot worse than plain assignment. Assignment is likely fastest in terms of real-world data.

Output:

  • assignment in 0.0119960308075 seconds
  • worst case comparison in 0.0188510417938 seconds
  • best case comparison in 0.0116770267487 seconds

Code:

<?php
$arr = array();

$mtime = explode(" ", microtime());
$starttime = $mtime[1] + $mtime[0];

reset_arr($arr);

for ($i=0;$i<10000;$i++)
    $arr[i] = true;


$mtime = explode(" ", microtime());
$firsttime = $mtime[1] + $mtime[0];
$totaltime = ($firsttime - $starttime);
echo "assignment in ".$totaltime." seconds<br />"; 

reset_arr($arr);

for ($i=0;$i<10000;$i++)
    if ($arr[i])
    	$arr[i] = true;

$mtime = explode(" ", microtime());
$secondtime = $mtime[1] + $mtime[0];
$totaltime = ($secondtime - $firsttime);
echo "worst case comparison in ".$totaltime." seconds<br />"; 

reset_arr($arr);

for ($i=0;$i<10000;$i++)
    if (!$arr[i])
    	$arr[i] = false;

$mtime = explode(" ", microtime());
$thirdtime = $mtime[1] + $mtime[0];
$totaltime = ($thirdtime - $secondtime);
echo "best case comparison in ".$totaltime." seconds<br />"; 

function reset_arr($arr) {
    for ($i=0;$i<10000;$i++)
    	$arr[$i] = false;
}
link|flag
Thats interesting: assignment is actually faster! – harshath.jr May 27 at 3:47
Ad by a significant margin, too: 14 ms versus 22 to 39 ms. That's about a factor of 2! – MSalters May 27 at 15:29
vote up 0 vote down

As others have noted, this is micro-optimization.

(In politics or journalism, this is known as navel-gazing ;-)

Is the program large enough to have more than a couple layers of function/method/subroutine calls?

If so, it probably had some avoidable calls, and those can waste hundreds as much time as low-level inefficiencies.

On the assumption that you have removed those (which few people do), then by all means run it 10^9 times under a stopwatch, and see which is faster.

link|flag
vote up 0 vote down

If you just want to flip the values, then do:

array[i] = !array[i];

Performance using this is actually worse though, as instead of only having to do a single check for a true false value then setting, it checks twice.

If you declare a 1000000 element array of true,false, true,false pattern comparision is slower. (var b = !b) essentially does a check twice instead of once

link|flag

Your Answer

Get an OpenID
or

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