arcon icon indicating copy to clipboard operation
arcon copied to clipboard

Fix sse2 requirement on HashTable

Open Max-Meldrum opened this issue 3 years ago • 1 comments

Max-Meldrum avatar Mar 09 '21 14:03 Max-Meldrum

Note to self: should use aligned store rather then the current unaligned..

x86::_mm_storeu_si128(ptr as *mut _, transformed_group);
// should be 
x86::_mm_store_si128(ptr as *mut _, transformed_group);

Max-Meldrum avatar Nov 29 '21 16:11 Max-Meldrum