main
test-branch
| Line | |
|---|
| 1 |
|
|---|
| 2 | $input int NPROCS;
|
|---|
| 3 | $proc __procs[NPROCS];
|
|---|
| 4 | _Bool __start = 0;
|
|---|
| 5 | $gcomm COMM_WORLD;
|
|---|
| 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++) {
|
|---|
| 16 | $yield();
|
|---|
| 17 | $wait(__procs[i]);
|
|---|
| 18 | }
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 21 | void main() {
|
|---|
| 22 | $atomic{
|
|---|
| 23 | init();
|
|---|
| 24 | COMM_WORLD = $gcomm_create($here, NPROCS);
|
|---|
| 25 | __start = 1;
|
|---|
| 26 | finalize();
|
|---|
| 27 | $gcomm_destroy(COMM_WORLD, NULL);
|
|---|
| 28 | }
|
|---|
| 29 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.