x86-simd-sort icon indicating copy to clipboard operation
x86-simd-sort copied to clipboard

C++ template library for high performance SIMD based sorting algorithms

Results 36 x86-simd-sort issues
Sort by recently updated
recently updated
newest added

Hi, Please see below. Thank you in advance for your help. ``` sandbox:${WORKSPACE}/srcdir # ls -lusah --color total 12K 4 drwxr-xrw- 1 root root 4.0K Aug 26 08:55 . 4...

Not critical, but thought you might like to know. When looking at the diff to a previous version, I see a stray windows line ending `^M` has crept into this...

This pull request fixes MSVC compiler warnings by adding appropriate casts in the following areas: 1. Added for array index conversions in avx2-emu-funcs.hpp 2. Added for 16-bit constants like 0x8000...

When building with MSVC, these warnings show up. Might be useful to fix them. ``` [1/8] Compiling C++ object x86simdsortcpp-1.dll.p/lib_x86simdsort.cpp.obj ../lib/x86simdsort.cpp(16): warning C4996: 'getenv': This function or variable may be...

This PR allows to use and link the library both in Linux and Windows (also compatible with MSVC). It exports most of the functions using a `extern-C` api, so there...

This patch tries to make type errors better when building with the static functions. It should hopefully make it more clear when the typing is an issue. Here is a...