• Home
Name Date Size #Lines LOC

..--

cmake/03-May-2024-21

.gitignoreD03-May-2024143 1814

CMakeLists.txtD03-May-20241.3 KiB5441

LICENSED03-May-20241.6 KiB3022

METADATAD03-May-202439 43

NEON_2_SSE.hD03-May-2024787.2 KiB16,71613,286

ReadMe.mdD03-May-2024950 149

ReadMe.md

1*****************************************************************************************
2 The NEON_2_SSE.h file is intended to simplify ARM->IA32 porting.
3 It makes the correspondence (or a real port) between ARM NEON intrinsics (as defined in "arm_neon.h") header
4 and x86 SSE (up to SSE4.2) intrinsic functions as defined in corresponding x86 compilers headers files.
5 ****************************************************************************************
6
7To take advantage of this file just include it in your project that uses ARM NEON intinsics instead of "arm_neon.h", compile it as usual and enjoy the result.
8
9For significant performance improvement in some cases you might need to define USE_SSE4 in your project settings. Otherwise SIMD up to SSSE3 to be used.
10
11If NEON2SSE_DISABLE_PERFORMANCE_WARNING macro is defined, then the performance warnings are disabled.
12
13For more information and license please read the NEON_2_SSE.h content.
14