Hello everyone,
Does someone has a code snippet for sorting an array of floats in CUDA? I have a small shared array of 216 elements and I would like to sort it from ascending to descending.
So, I have something like this:
[codebox]
shared float localArray[216];
localArray[current] = someValue;
__syncthreads();
// sorting routine here
[/codebox]
My array is quite small and the sorting routine does not have to be very complicated, I guess.
Thanks,
xarg
EDIT: Actually, I realized that I need to do the sorting in another kernel, but the sorting bit still remains to be solved…