Skip to content

Instantly share code, notes, and snippets.

@usagi
Last active December 10, 2015 22:49
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 usagi/4504892 to your computer and use it in GitHub Desktop.
Save usagi/4504892 to your computer and use it in GitHub Desktop.
#include <iostream>
int main(){
#pragma omp parallel for
for(auto a = 0; a < 10; ++a)
std::cout << a << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment