Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 375 Bytes

File metadata and controls

8 lines (6 loc) · 375 Bytes

Small Bitonic

A bitonic sort for small arrays of size 8 and 16 written in AVX-2 assembly. The assembly file has been written in such a way that it supports linux, macOS and windows.

Results

When testing on a Xeon E3-1230 v5 these 2 functions are ~2x faster than C++'s std::sort().

Uses

Mainly useful for acting a recursion terminator in a larger sorting algorithm.