Basic HTML version of Foils prepared August 29 98

Foil 15 DO Scheduling (2)

From Designing and Building Parallel Programs 2: openMP Shared Memory Programming Language DoD Modernization Tutorial -- 1995-1998. by Ian Foster, Gina Goff, Ehtesham Hayder, Chuck Koelbel(Some foils prepared by Kuck & Associates, Inc.)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
!$OMP PARALLEL DO &
!$OMP SCHEDULE(DYNAMIC,1)
DO J = 1, 36
CALL SUBR(J)
END DO
!$OMP END DO
!$OMP PARALLEL DO &
!$OMP SCHEDULE(GUIDED,1)
DO J = 1, 36
CALL SUBR(J)
END DO
!$OMP END DO



© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Sun Apr 11 1999