• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

cmake/23-Nov-2023-21

.gitignoreD23-Nov-2023143 1814

CMakeLists.txtD23-Nov-20231.3 KiB5441

LICENSED23-Nov-20231.6 KiB3022

METADATAD23-Nov-202339 43

NEON_2_SSE.hD23-Nov-2023787.2 KiB16,71613,286

ReadMe.mdD23-Nov-2023950 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