Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 240fc229 authored by thierry's avatar thierry
Browse files

Update

parent 5d9d742e
No related branches found
No related tags found
No related merge requests found
#include <omp.h>
#include <iostream>
int main()
{
std::cout << "I'm thread " << omp_get_thread_num()
<< " in a group of " << omp_get_num_threads()
<< " thread(s)" << std::endl;
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment