Exemplo n.º 1
0
/*
 * mpi_ibcast(+Root,+Data).
 */
static YAP_Bool 
mpi_ibcast2(term_t YAP_ARG1,...) {
  return my_ibcast(YAP_ARG1,YAP_ARG2,YAP_MkIntTerm(0));
}
Exemplo n.º 2
0
/*
 * mpi_ibcast(+Root,+Data).
 */
static YAP_Bool 
mpi_ibcast2(void) {
  return my_ibcast(YAP_ARG1,YAP_ARG2,YAP_MkIntTerm(0));
}
Exemplo n.º 3
0
/*
 * Broadcasts a message from the process with rank "root" to
 *      all other processes of the group.
 * To receive the message the recipients use MPI_Recv
 * The message is sent using MPI_Isend
 * mpi_ibcast(+Root,+Data,+Tag).
 */
static YAP_Bool 
mpi_ibcast3(term_t YAP_ARG1,...) {
  return my_ibcast(YAP_ARG1,YAP_ARG2,YAP_ARG3);
}
Exemplo n.º 4
0
/*
 * Broadcasts a message from the process with rank "root" to
 *      all other processes of the group.
 * To receive the message the recipients use MPI_Recv
 * The message is sent using MPI_Isend
 * mpi_ibcast(+Root,+Data,+Tag).
 */
static YAP_Bool 
mpi_ibcast3(void) {
  return my_ibcast(YAP_ARG1,YAP_ARG2,YAP_ARG3);
}