vote up 3 vote down star
2

Given a register of 4 bytes (or 16 for SIMD), there has to be an efficient way to sort the bytes in-register with a few instructions.

Thanks in advance.

flag

75% accept rate

3 Answers

vote up 3 vote down check

Look up an efficient sorting network for N = the number of bytes you care about (4 or 16). Convert that to a sequence of compare and exchange instructions. (For N=16 that'll be more than 'a few', though.)

link|flag
Thanks. I'm looking for an asm efficient solution. Oh, please note I said a "few instructions" and not a "few cycles" ;) – aleccolocco Oct 16 at 23:15
Ah, I see that the paper you linked to takes just this approach, using SSE2 instructions. Cool. – Darius Bacon Oct 17 at 4:06
Yeah, I didn't want to be too verbose, as I was hoping for some sort of bit hack magic with asm. In fact I was looking for this reading "Efficient Implementation of Sorting on Multi-Core SIMD CPU Architecture" (Chhugani,.. 2008), but got frustrated with the instructions for the algorithm: 1) a) Perform In-Register Sort to obtain sorted sequences of length K. I guess for researchers at Intel that's a "duh" procedure, but not for me! (I'm still not sure they do the whole 17-19 instruction procedure to sort a register.) [Note: sorry, didn't up-vote you because of lack of karma] – aleccolocco Oct 17 at 8:28
I learned something from a skim of the 2007 paper -- reward enough. :-) – Darius Bacon Oct 17 at 19:23
By the way, there's a very efficient simultaneous 4 register sort on the original (2008) paper. In my face, my bad. – aleccolocco Oct 19 at 6:51
vote up 3 vote down

Found it! It's in the 2007 paper "Using SIMD Registers and Instructions to Enable Instruction-Level Parallelism in Sorting Algorithms" by Furtak, Amaral, and Niewiadomski. Section 4.

It uses 4 SSE registers, has 12 steps, and runs in 19 instructions including load and store.

The same paper has some excellent work on dynamically making sorting networks with SIMD.

link|flag
Link to PDF: cs.ualberta.ca/~amaral/papers/… – aleccolocco Oct 17 at 1:11
vote up 1 vote down

All sorting algorithms require "swapping" values from one place to another. Since you're talking about a literal CPU register, that means any sort would need another register to use as a temporary place to hold the bytes being swapped.

I've never seen a chip with a built-in method for sorting bytes within a register. Not saying it hasn't been done, but I can't think of many uses for such an instruction.

link|flag
I meant as sort the bytes in a register, of course have to use at least another register. Sorry for the misunderstanding. – aleccolocco Oct 16 at 22:24
Actually there is a way for in-register sorting using CMPXCHG using eax register and rotating it, as a friend who is quite knowledgeable in x86 showed me. Little gain from it, but it is possible. Also CMPXCHG is quite slow. – aleccolocco Oct 21 at 20:55
1  
All SIMD architectures that I've used have such instructions. – alex strange Nov 4 at 0:10

Your Answer

Get an OpenID
or

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