OMP_SCHEDULE – How threads are scheduled#
- Description:
Allows to specify
schedule type
andchunk size
. The value of the variable shall have the form:type[,chunk]
wheretype
is one ofstatic
,dynamic
,guided
orauto
The optionalchunk
size shall be a positive integer. If undefined, dynamic scheduling and a chunk size of 1 is used.- See also:
- Reference:
OpenMP specification v4.5, Sections 2.7.1.1 and 4.1