wrf.omp_get_schedule

wrf.omp_get_schedule()

Return the schedule that is applied when the runtime schedule is used.

This routine returns the run-sched-var ICV in the task to which the routine binds. The first item is the schedule kind, which will be one of wrf.OMP_SCHED_STATIC, wrf.OMP_SCHED_DYNAMIC, wrf.OMP_SCHED_GUIDED, or wrf.OMP_SCHED_AUTO. The second item returned is the modifier, which is often named chunk_size in OpenMP documentation.

Returns:The first item is an int for the schedule kind. The second items is int for the modifier (chunk_size).
Return type:tuple