The loop distribution transformation cuts the body of a do-loop statement in two parts. The first statement of the second part specifies the cut position. For example, the following describes a loop distribution according to the statement I3:
DO I=1,N,4 PRINT *,I PRINT *,I+1 PRINT *,I+2 PRINT *,I+3 END DO
DO I=1,N PRINT *,I PRINT *,I+1 END DO DO I=1,N PRINT *,I+2 PRINT *,I+3 END DO