Skip to content

Instantly share code, notes, and snippets.

@luctrudeau
Last active February 28, 2018 03:51
Show Gist options
  • Save luctrudeau/f5cba263f6f7766e74eb9812f88b9a15 to your computer and use it in GitHub Desktop.
Save luctrudeau/f5cba263f6f7766e74eb9812f88b9a15 to your computer and use it in GitHub Desktop.
vadd
int16x4_t vadd_s16(int16x4_t a, int16x4_t b) {
int16x4_t c;
for (int i = 0; i < 4; i++) {
c[i] = a[i] + b[i];
}
return c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment