OMP_SCHEDULE=algorithm environment variable

The OMP_SCHEDULE environment variable specifies the scheduling algorithm used for loops not explicitly assigned a scheduling algorithm with the omp schedule directive.

For example:
OMP_SCHEDULE=“guided, 4”
Valid options for algorithm are:

If specifying a chunk size with n, the value of n must be an integer value of 1 or greater.

The default scheduling algorithm is static.