Created
February 28, 2018 03:42
-
-
Save luctrudeau/b8936f541f0dadce8166df8ff30f2e4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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