|
3 |
Fix typo in title
|
||
Is it more efficent efficient to branch or multiply? |
||||
|
2 | complier --> compiler | ||
|
I am trying to optimize a small, highly used function which uses the high bits in an unsigned short int to indicate the values of an array to sum together. At first I was using the obvious approach shown below. Please note that loop unrolling is not explicitly shown as it should be done by the compliercompiler.
However, later I thought it might be better to remove the branching to help CPU pipelining and came up with the following.
Note that since (i & mask) does not result in a boolean answer, the comparison with 0 forces the result to be either 1 or 0. Although this second approach eliminates the if-statement from this section of the code, the second solution needs to run a multiplication of 0 or 1 on every iteration in addition to the rest of the equation. Which code will run faster? |
||||
|
1 |
|
||
Is it more efficent to branch or multiply?I am trying to optimize a small, highly used function which uses the high bits in an unsigned short int to indicate the values of an array to sum together. At first I was using the obvious approach shown below. Please note that loop unrolling is not explicitly shown as it should be done by the complier.
However, later I thought it might be better to remove the branching to help CPU pipelining and came up with the following.
Note that since (i & mask) does not result in a boolean answer, the comparison with 0 forces the result to be either 1 or 0. Although this second approach eliminates the if-statement from this section of the code, the second solution needs to run a multiplication of 0 or 1 on every iteration in addition to the rest of the equation. Which code will run faster?
|
||||
