show/hide this revision's text 9 added 94 characters in body

Maybe I am crazy, but I am having fun :D This solution is based upon the usage of data parallelism and faking a vector cpu without actually using SSE intrinsics or anything similar.

unsigned short out[64];
const unsigned long long mask      = 0x0249024902490249ul;
const unsigned long long shiftmask = 0x0001000100010001ul;

unsigned long long t = (unsigned short)(in >> 38) | (unsigned long long)(unsigned short)(in >> 39) > 40) > 41) << 48;
t &= mask;
*((unsigned long long*)(out + 38)) = (t & shiftmask) + (t >> 3 & shiftmask) + (t >> 6 & shiftmask) + (t >> 9 & shiftmask);

[... snipsnap ...]

t = (unsigned short)(in >> 2) | (unsigned long long)(unsigned short)(in >> 3) > 4) > 5) << 48;
t &= mask;
*((unsigned long long*)(out + 2)) = (t & shiftmask) + (t >> 3 & shiftmask) + (t >> 6 & shiftmask) + (t >> 9 & shiftmask);

t = (unsigned short)in | (unsigned long long)(unsigned short)(in >> 1) << 16;
t &= mask;
*((unsigned int*)out) = (unsigned int)((t & shiftmask) + (t >> 3 & shiftmask) + (t >> 6 & shiftmask) + (t >> 9 & shiftmask));


By reordering the computations, we can further reduce the execution time significantly, since it drastically reduces the amount of times that something is loaded into the QWORD. A few other optimizations are quite obvious and rather minor, but sum up to another interesting speedup.

unsigned short out[64];
const unsigned long long Xmask = 0x249024902490249ull;
const unsigned long long Ymask = 0x7000700070007u;

unsigned long long x = (in >> 14 & 0xFFFFu) | (in >> 20 & 0xFFFFu) > 26 & 0xFFFFu) > 32) << 48;
unsigned long long y;
y = x & Xmask;
y += y >> 6;
y += y >> 3;
y &= Ymask;
out[32] = (unsigned short)(y >> 48);
out[26] = (unsigned short)(y >> 32);
out[20] = (unsigned short)(y >> 16);
out[14] = (unsigned short)(y      );

x >>= 1;
y = x & Xmask;
y += y >> 6;
y += y >> 3;
y &= Ymask;
out[33] = (unsigned short)(y >> 48);
out[27] = (unsigned short)(y >> 32);
out[21] = (unsigned short)(y >> 16);
out[15] = (unsigned short)(y      );

[snisnap]

x >>= 1;
y = x & Xmask;
y += y >> 6;
y += y >> 3;
y &= Ymask;
out[37] = (unsigned short)(y >> 48);
out[31] = (unsigned short)(y >> 32);
out[25] = (unsigned short)(y >> 16);
out[19] = (unsigned short)(y      );

x >>= 1;
x &= 0xFFFF000000000000ul;
x |= (in & 0xFFFFu) | (in >> 5 & 0xFFFFu) > 10 & 0xFFFFu) << 32;
y = x & Xmask;
y += y >> 6;
y += y >> 3;
y &= Ymask;
out[38] = (unsigned short)(y >> 48);
out[10] = (unsigned short)(y >> 32);
out[ 5] = (unsigned short)(y >> 16);
out[ 0] = (unsigned short)(y      );

[snipsnap]

x >>= 1;
y = x & Xmask;
y += y >> 6;
y += y >> 3;
y &= Ymask;
out[ 9] = (unsigned short)(y >> 16);
out[ 4] = (unsigned short)(y      );

Running times for 50 million executions in native c++ (all ouputs verified to match ^^) compiled as a 64 bit binary on my pc:
Array based solution: ~5700 ms
Naive hardcoded solution: ~4200 ms
The first solution: ~2400 ms
The second solution: ~1600 ms

show/hide this revision's text 8 added 1667 characters in body
By reordering the computations, we can further reduce the execution time significantly, since it drastically reduces the amount of times that something is loaded into the QWORD. A few other optimizations are quite obvious and rather minor, but sum up to another interesting speedup.

unsigned short out[64];const unsigned long long Xmask = 0x249024902490249ull;const unsigned long long Ymask = 0x7000700070007u;unsigned long long x = (in >> 14 & 0xFFFFu) | (in >> 20 & 0xFFFFu) > 26 & 0xFFFFu) > 32) > 6;y += y >> 3;y &= Ymask;out[32] = (unsigned short)(y >> 48);out[26] = (unsigned short)(y >> 32);out[20] = (unsigned short)(y >> 16);out[14] = (unsigned short)(y      );x >>= 1;y = x & Xmask;y += y >> 6;y += y >> 3;y &= Ymask;out[33] = (unsigned short)(y >> 48);out[27] = (unsigned short)(y >> 32);out[21] = (unsigned short)(y >> 16);out[15] = (unsigned short)(y      );x >>= 1;y = x & Xmask;y += y >> 6;y += y >> 3;y &= Ymask;out[37] = (unsigned short)(y >> 48);out[31] = (unsigned short)(y >> 32);out[25] = (unsigned short)(y >> 16);out[19] = (unsigned short)(y      );x >>= 1;x &= 0xFFFF000000000000ul;x |= (in & 0xFFFFu) | (in >> 5 & 0xFFFFu) > 10 & 0xFFFFu) > 6;y += y >> 3;y &= Ymask;out[38] = (unsigned short)(y >> 48);out[10] = (unsigned short)(y >> 32);out[ 5] = (unsigned short)(y >> 16);out[ 0] = (unsigned short)(y      );x >>= 1;y = x & Xmask;y += y >> 6;y += y >> 3;y &= Ymask;out[ 9] = (unsigned short)(y >> 16);out[ 4] = (unsigned short)(y      );

Running times for 50 million executions in native c++ (all ouputs verified to match ^^):^) compiled as a 64 bit binary on my pc:
The first solution: ~2400 ms
The second solution: ~1600 ms

show/hide this revision's text 7 added 33 characters in body

Maybe I am crazy, but I am having fun :DThis code works by reusing existing parts of solution is based upon the computation (usage of data parallelism and performs ~50% faster than faking a "naive" hardcoded version on my pc). It is intended for 16 bit numbers but easily extended to 42vector cpu without actually using SSE intrinsics or anything similar.Its "m" is 3, but I think it is quite obvious how to modify it for other "m"s.

char[16] c

unsigned short out[64];c[15] const unsigned long long mask = ((1 << 15) & in) >> 150x0249024902490249ul;c[14] const unsigned long long shiftmask = ((1 << 14) & in) >> 140x0001000100010001ul;c[13] unsigned long long t = ((1 << 13) & in) unsigned short)(in >> 13;c[12] = (((1 << 1238) & in| (unsigned long long)(unsigned short)(in >> 39) > 40) > 1241) + c[15]<< 48;c[11] t &= mask;*((unsigned long long*)(out + 38)) = (((1 << 11) t & inshiftmask) + (t >> 113 & shiftmask) + c[14];c[10] = (((1 << 10) & in) t >> 106 & shiftmask) + c[13];c[9] = (((1 << 9) & in) t >> 9 ) + c[12]& shiftmask);c[8] [... snipsnap ...]t = (((1 << 8unsigned short)(in >> 2) & in| (unsigned long long)(unsigned short)(in >> 3) > 4) > 85) + c[11]<< 48;c[7] t &= mask;*((unsigned long long*)(out + 2)) = (((1 << 7) t & inshiftmask) + (t >> 73 & shiftmask) + c[10];c[6] = (((1 << 6) & in) t >> 6 & shiftmask) + c[9];c[5] = (((1 << 5) & in) t >> 5) + c[8]9 & shiftmask);c[4] t = (((1 << 4) & in) unsigned short)in | (unsigned long long)(unsigned short)(in >> 41) + c[7]<< 16;c[3] t &= mask;*((unsigned int*)out) = (((1 << 3) unsigned int)((t & inshiftmask) + (t >> 3 & shiftmask) + c[6];c[2] = (((1 << 2) & in) t >> 26 & shiftmask) + c[5];c[1] = (((1 << 1) & in) t >> 1) + c[4];c[0] = (1 9 & in) + c[3]shiftmask));

Running times for 50 million executions in native c++ (all ouputs verified to match ^^):
Array based solution: ~5700 ms
Naive hardcoded solution: ~4200 ms
This solution: ~2400 ms

show/hide this revision's text 6 added 677 characters in body
show/hide this revision's text 5 deleted 2 characters in body
show/hide this revision's text 4 deleted 28 characters in body
show/hide this revision's text 3 Removed extraneous bits that do not add to the answer.
show/hide this revision's text 2 edited body
show/hide this revision's text 1