Changes between Initial Version and Version 1 of mpich/MPI_Bcast


Ignore:
Timestamp:
Jul 23, 2008, 11:22:17 AM (16 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mpich/MPI_Bcast

    v1 v1  
     1=MPI_Bcast=
     2Broadcasts a message from the process with rank "root" to all other processes of the group.
     3
     4=Synopsis=
     5{{{
     6#include "mpi.h"
     7int MPI_Bcast ( void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm )
     8}}}
     9
     10=Input/output Parameters=
     11{{{
     12  buffer    starting address of buffer (choice)
     13  count     number of entries in buffer (integer)
     14  datatype  data type of buffer (handle)
     15  root      rank of broadcast root (integer)
     16  comm      communicator (handle)
     17}}}