Next: , Previous: omp_get_num_threads, Up: Runtime Library Routines


2.10 omp_get_schedule – Obtain the runtime scheduling method

Description:
Obtain the runtime scheduling method. The kind argument will be set to the value omp_sched_static, omp_sched_dynamic, omp_sched_guided or omp_sched_auto. The second argument, modifier, is set to the chunk size.
C/C++

Prototype: omp_schedule(omp_sched_t *kind, int *modifier);

Fortran:

Interface: subroutine omp_schedule(kind, modifier)
integer(kind=omp_sched_kind) kind
integer modifier

See also:
omp_set_schedule, OMP_SCHEDULE
Reference:
OpenMP specifications v3.0, section 3.2.12.