mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
30 lines
402 B
C
30 lines
402 B
C
/*
|
|
* @@name: ordered.1c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: yes
|
|
* @@expect: success
|
|
*/
|
|
#include <stdio.h>
|
|
|
|
void work(int k)
|
|
{
|
|
#pragma omp ordered
|
|
printf(" %d\n", k);
|
|
}
|
|
|
|
void ordered_example(int lb, int ub, int stride)
|
|
{
|
|
int i;
|
|
|
|
#pragma omp parallel for ordered schedule(dynamic)
|
|
for (i=lb; i<ub; i+=stride)
|
|
work(i);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
ordered_example(0, 100, 5);
|
|
return 0;
|
|
}
|