Title: COMP309/509 - Lecture 14 class: middle, center, inverse

COMP309/509 - Parallel and Distributed Computing

Lecture 14 - Programming with PVM

By Mitchell Welch

University of New England


Reading


Summary


Message Passing in PVM


Message Passing in PVM


Message Passing in PVM


Message Passing in PVM

int info = pvm_send(int tid, int msgtag);

Message Passing in PVM


Message Passing in PVM

int bufid = pvm_recv(int tid, int msgtag);

Message Passing in PVM


Message Passing in PVM

int info = pvm_bufinfo(int bufid, int *bytes, int msgtag, int *tid);

Message Passing in PVM

bufid = pvm_recv( -1, -1 );
info = pvm_bufinfo( bufid, &bytes, &type, &source );

Message Passing in PVM

int info = pvm_exit();

Message Passing in PVM

pvm_exit();
exit(EXIT_SUCCESS);

Master-Slave in PVM


Master-Slave in PVM


Master-Slave in PVM


Master-Slave in PVM


Master-Slave in PVM


Master-Slave in PVM

int info = pvm_mcast(tids, ntask, msgtag);

Master-Slave in PVM


Master-Slave in PVM

int info = pvm_pk<type>(<type> *ip, int nitem, int stride);

Master-Slave in PVM


Summary


class: middle, center, inverse

Questions?


Reading