Skip to content

Instantly share code, notes, and snippets.

@luctrudeau
Created February 28, 2018 03:31
Show Gist options
  • Save luctrudeau/085478aacb1026b804f4393e7a0c5640 to your computer and use it in GitHub Desktop.
Save luctrudeau/085478aacb1026b804f4393e7a0c5640 to your computer and use it in GitHub Desktop.
int32x4_t vaddw_s16_c(int32x4_t a, int16x4_t b) {
int32x4_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