Ok, I am confused on this. In the file "clppSort_RadixSort.cl", I see
the following code:
source = _keysOnly ? "#define MAX_KV_TYPE 0x7FFFFFFF\n" : "#define
MAX_KV_TYPE ((int2)(0x7FFFFFFF,0xFFFFFFFF))\n";
source += _keysOnly ? "#define KV_TYPE int\n" : "#define KV_TYPE
int2\n";
I am trying to sort my unsigned integers and it is failing. You have
clppSort_RadixSort.cl and clppSort_RadixSortGPU.cl. I am not sure
which one to use. Can you please explain to me what I am doing wrong
here.
I am using the .cl files because I have made a few changes inside the
kernels, therefore, I am using the .cl files.
-Ritesh