hhony / SSE-to-NEON

Header file to translate SSE instructions to ARM NEON instructions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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


Languages

Language:C++ 100.0%