mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
30 lines
407 B
C
30 lines
407 B
C
/*
|
|
* @@name: ordered.1
|
|
* @@type: C
|
|
* @@operation: run
|
|
* @@expect: success
|
|
* @@version: pre_omp_3.0
|
|
*/
|
|
#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;
|
|
}
|