In C is there a branch-less technique to compute the absolute difference between two unsigned ints? For example given the variables a and b, I would like the value 2 for cases when a=3, b=5 or b=3, a=5. Ideally I would also like to be able to vectorize the computation using the SSE registers.
|
There are several ways to do it, I'll just mention one: SSE4
MMX/SSE2
|
|||
|
|
|
Try this (assumes 2nd complements, which is OK judgning by the fact that you're asking for SSE):
Explanation: sign-bit (bit 31) gets propagated down to 1st bit. the | 1 part ensures that the multiplier is either 1 or -1. Multiplications are fast on modern CPUs. |
|||
|
|
you can certainly use SSE registers, but compiler may do this for you anyways |
||||
|
|
|
compute the difference and return the absolute value
This requires one less operation that using the signed compare op, and produces less register pressure. Same amount of register pressure as before, 2 more ops, better branch and merging of dependency chains, instruction pairing for uops decoding, and separate unit utilization. Although this requires a load, which may be out of cache. I'm out of ideas after this one.
After timing each version with 2 million iterations on a Core2Duo, differences are immeasurable. So pick whatever is easier to understand. |
|||||
|
|
SSE2: Seems to be about the same speed as Phernost's second function. Sometimes GCC schedules it to be a full cycle faster, other times a little slower.
SSSE3: Ever so slightly faster than previous. There is a lot of variation depending on how things outside the loop are declared. (For example, making
SSE4 (thx rwong): Can't test this.
|
||||
|
|
|
From tommesani.com, one solution for this problem is to use saturating unsigned subtraction twice. As the saturating subtraction never goes below 0, you compute: r1 = (a-b).saturating r2 = (b-a).saturating If a is greater than b, r1 will contain the answer, and r2 will be 0, and vice-versa for b>a. ORing the two partial results together will yield the desired result. According to the VTUNE users manual, PSUBUSB/PSUBUSW is available for 128-bit registers, so you should be able to get a ton of parallelization this way. |
|||
|
|
|
Erm ... its pretty easy ...
Easily vectorisable (Using SSE3 as):
a and b are unsigned integers. Consider a=0 and b=0xffffffff. The correct absolute difference is 0xffffffff, but your solution will give 1. |
||||
|
|
|
a xor b? I can't remember if C++ has an XOR operator now -- I think it's |
|||||||||||
|