Changes between Version 9 and Version 10 of MpiKernels

Show
Ignore:
Timestamp:
02/28/12 16:06:58 (13 years ago)
Author:
mmamonski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MpiKernels

    v9 v10  
    1212=== Limitations === 
    1313* 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%" 
    1416{{{#!python 
    1517void Ring_Broadcast_Params(double *deltaE, double *maxE) 
     
    1820        assert( MPI_Bcast(maxE, 1, MPI_DOUBLE, 0, MPI_COMM_WORLD) == MPI_SUCCESS); 
    1921} 
    20 }}}} 
     22}}} 
     23}}} 
    2124=== MPI implementation === 
    2225