arcon
arcon copied to clipboard
Fix sse2 requirement on HashTable
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);