Created
February 28, 2018 03:37
-
-
Save luctrudeau/587f2acb8d27578f0d7576109e98ec2b 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
int16x4_t vrhadd_s16_c(int16x4_t a, int16x4_t b) { | |
int16x4_t c; | |
for (int i = 0; i < 4; i++) { | |
c[i] = (a[i] + b[i] + 1) >> 1; | |
} | |
return c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment