Skip to content

Instantly share code, notes, and snippets.

@hyunsik
Created August 29, 2016 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hyunsik/55f62f6662c678d2741a2897e40f8ba9 to your computer and use it in GitHub Desktop.
Save hyunsik/55f62f6662c678d2741a2897e40f8ba9 to your computer and use it in GitHub Desktop.
unrolled for-loop
for (i = 0; i < 128; i+=4) {
a[i] = b[i] + c[i];
a[i+1] = b[i+1] + c[i+1];
a[i+2] = b[i+2] + c[i+2];
a[i+3] = b[i+3] + c[i+3];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment