Add METADATA to neon_2_sse: BSD=NOTICE am: c6dbb123bd am: b4f8cb4dff am: 5e2d02c27d am: 68fd0d0a12 am: 3ffb341a27

Change-Id: I3980e2d7ce2a6ebadb0f2d361fe8e50eaf7076bf
tree: b74594106b475046ac4ad9c234fd111463760f16
  1. cmake/
  2. .gitignore
  3. CMakeLists.txt
  4. LICENSE
  5. METADATA
  6. NEON_2_SSE.h
  7. ReadMe.md
ReadMe.md

The NEON_2_SSE.h file is intended to simplify ARM->IA32 porting. It makes the correspondence (or a real port) between ARM NEON intrinsics (as defined in “arm_neon.h”) header and x86 SSE (up to SSE4.2) intrinsic functions as defined in corresponding x86 compilers headers files.


To 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.

For 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.

If NEON2SSE_DISABLE_PERFORMANCE_WARNING macro is defined, then the performance warnings are disabled.

For more information and license please read the NEON_2_SSE.h content.