Skip to content

Instantly share code, notes, and snippets.

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