mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
Merging Matt Davis' changes into work.
This commit is contained in:
commit
51ab7f0b63
@ -6,10 +6,11 @@
|
||||
* @@expect: success
|
||||
*/
|
||||
void work();
|
||||
void main()
|
||||
int main()
|
||||
{
|
||||
#pragma omp parallel proc_bind(spread) num_threads(4)
|
||||
{
|
||||
work();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -6,10 +6,11 @@
|
||||
* @@expect: success
|
||||
*/
|
||||
void work();
|
||||
void main()
|
||||
int main()
|
||||
{
|
||||
#pragma omp parallel proc_bind(close) num_threads(4)
|
||||
{
|
||||
work();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -6,10 +6,11 @@
|
||||
* @@expect: success
|
||||
*/
|
||||
void work();
|
||||
void main()
|
||||
int main()
|
||||
{
|
||||
#pragma omp parallel proc_bind(master) num_threads(4)
|
||||
{
|
||||
work();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -28,5 +28,5 @@ int main( ) {
|
||||
printf( "section_count %d\n", section_count );
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
@ -26,4 +26,5 @@ int main (void)
|
||||
#pragma omp single
|
||||
printf ("Sum is %d\n", a);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -56,4 +56,5 @@ int main()
|
||||
}
|
||||
} // only now is background work required to be complete
|
||||
print_results();
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user