Changes between Version 9 and Version 10 of MpiKernels
- Timestamp:
- 02/28/12 16:06:58 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MpiKernels
v9 v10 12 12 === Limitations === 13 13 * Any MUSCLE API routine may be **ONLY** called by the rank 0 process. If you need any parameters to be available for the all MPI processes use `MPI_Bcast` function as in provided example: 14 {{{ 15 #!div style="font-size: 80%" 14 16 {{{#!python 15 17 void Ring_Broadcast_Params(double *deltaE, double *maxE) … … 18 20 assert( MPI_Bcast(maxE, 1, MPI_DOUBLE, 0, MPI_COMM_WORLD) == MPI_SUCCESS); 19 21 } 20 }}}} 22 }}} 23 }}} 21 24 === MPI implementation === 22 25