source:
CIVL/examples/concurrency/mp_root.cvh@
e7597e1
| Last change on this file since e7597e1 was 07f7630, checked in by , 10 years ago | |
|---|---|
|
|
| File size: 436 bytes | |
| Rev | Line | |
|---|---|---|
| [0be7a7ea] | 1 | |
| 2 | $input int NPROCS; | |
| 3 | $proc __procs[NPROCS]; | |
| 4 | _Bool __start = 0; | |
| [b482f11] | 5 | $gcomm COMM_WORLD; |
| [0be7a7ea] | 6 | |
| 7 | void MPI_Process (int rank); | |
| 8 | ||
| 9 | void init() { | |
| 10 | for (int i=0; i<NPROCS; i++) | |
| 11 | __procs[i] = $spawn MPI_Process(i); | |
| 12 | } | |
| 13 | ||
| 14 | void finalize() { | |
| 15 | for (int i=0; i<NPROCS; i++) | |
| [a82987f] | 16 | $wait(__procs[i]); |
| [0be7a7ea] | 17 | } |
| 18 | ||
| 19 | void main() { | |
| [18cad8a] | 20 | $atomic{ |
| 21 | init(); | |
| [b482f11] | 22 | COMM_WORLD = $gcomm_create($here, NPROCS); |
| 23 | __start = 1; | |
| [18cad8a] | 24 | finalize(); |
| [07f7630] | 25 | $gcomm_destroy(COMM_WORLD, NULL); |
| [18cad8a] | 26 | } |
| [0be7a7ea] | 27 | } |
Note:
See TracBrowser
for help on using the repository browser.
