Skip to content

Header file to translate SSE instructions to ARM NEON instructions

Notifications You must be signed in to change notification settings

kiutao/SSE-to-NEON

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

SSE-to-NEON

(Incomplete) header file to translate SSE instructions to ARM NEON instructions

No guarantee for correctness.

Translating instructions will never be as efficient as building up your algorithm with NEON instructions, however, it can be seen as a starting point to doing so.

Usage:

#if defined(__ARM_NEON__)
#include "SSE-to-NEON/sse_to_neon.hpp"
#else
#include <emmintrin.h>
#endif

About

Header file to translate SSE instructions to ARM NEON instructions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%