The AssertSchedule assertion holds information about scheduling the iterations of a given loop. This is currently only useful for the SGI Challenge. The string given in the assertion is placed on a CSRD$ SCHEDULE directive, or appended to the C$DOACROSS directive for the SGI.
The CSRD directive form of the AssertSchedule assertion is:
CSRD$ SCHEDULE INTERLEAVED,CHUNK=2
An example of its usage is as follows:
CSRD$ PARALLEL (I) CSRD$ SCHEDULE INTERLEAVED,CHUNK=2 do i = 1, n . . .