Problem
Are there any computationally feasible approaches to intra-register deduplication of a set of integers using x86 SIMD instructions?
Example
We have a 4-tuple register R1 = {3, 9, 2, 9}, and wish to obtain register R2 = {3, 9, 2, NULL}.
Restrictions
Stablility. Preservation of the input order is of no significance.
Output. However, any removed values/NULLs must be at the beginning and/or end of the register:
- {null, 1, 2, 3} - OK
- {1, 2, null, null} - OK
- {null, 2, null, null} - OK
- {null, 2, null, 1} - Invalid order
- {null, null, null, null} - Invalid output
It is obviously a bonus if it is known to produce one particular output format. Please assume NULL to effectively mean 0 (zero).
Generality. Must be able to tolerate the absence of duplicates, and in this case produce an output equivalent to the input register.
Instruction sets. I'm looking for solutions for any or all of: SSE2-SSSE3; SSE4.x; AVX-AVX2
pshufdandpcmpeqdinstructions. – hirschhornsalz May 25 '12 at 19:35