source: CIVL/examples/concurrency/mp_root.cvh

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 456 bytes
RevLine 
[0be7a7ea]1
2$input int NPROCS;
3$proc __procs[NPROCS];
4_Bool __start = 0;
[b482f11]5$gcomm COMM_WORLD;
[0be7a7ea]6
7void MPI_Process (int rank);
8
9void init() {
10 for (int i=0; i<NPROCS; i++)
11 __procs[i] = $spawn MPI_Process(i);
12}
13
14void finalize() {
[a3da6fb]15 for (int i=0; i<NPROCS; i++) {
16 $yield();
[a82987f]17 $wait(__procs[i]);
[a3da6fb]18 }
[0be7a7ea]19}
20
21void main() {
[18cad8a]22 $atomic{
23 init();
[b482f11]24 COMM_WORLD = $gcomm_create($here, NPROCS);
25 __start = 1;
[18cad8a]26 finalize();
[07f7630]27 $gcomm_destroy(COMM_WORLD, NULL);
[18cad8a]28 }
[0be7a7ea]29}
Note: See TracBrowser for help on using the repository browser.