I'm writing an application for NEON. Where can I find the NEON ARM intrinsics in C/C++? I want to be able to decode my code running the application on a PC.
0
votes
1 Answers
0
votes
You can effectively simulate NEON intrinsics on PC using this header file: NEONvsSSE.h
In my experience it has close to 100% Arm/PC compatibility
In your solution it is possible to use definition like following to distinguish between Arm/PC versions:
#if !defined PC_VER
#include <arm_neon.h>
#else
#include "NEONvsSSE.h"
#endif
vadd_s16
, see github.com/nemequ/simde/blob/master/simde/arm/neon/… . I'm not making in an answer because I've barely started working on NEON… The best you're going to do is probably developer.arm.com/technologies/neon/intrinsics – nemequ