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, orwrf.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
intfor the schedule kind. The second items isintfor the modifier (chunk_size).- Return type:
See also