ILP comment (idea) for occurence countin'

This commit is contained in:
Richard Thier 2023-04-09 23:46:47 +02:00
parent 3c0b2d5202
commit f84f6fc398

View File

@ -451,6 +451,7 @@ static inline void thiersort8_internal(
#ifdef TS_SSE2
// TODO: implement with SSE2
#else
/* TODO: We can go both down and upwards here to increase ILP! */
/* Occurence counting O(n) */
for(TSU32 i = 0; i < length; ++i) {
++radics[ts_radixi(arr[i].key, isint, isunsigned, isfloat)];