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

COMP309/509 - Parallel and Distributed Computing

Lecture 15 - Programming with PVM

By Mitchell Welch

University of New England


Reading


Summary


Communication and Synchronisation in PVM


Communication and Synchronisation in PVM


Single Program Multiple Data Paradigm


Single Program Multiple Data Paradigm


all:   spmd2

spmd2: spmd2.c
        gcc -Wall spmd.c -lpvm3 -lgpvm3 -o spmd2  

host:
        cp -f spmd ${HOME}/pvm3/bin/LINUXI386/

clean: 
        rm -f spmd2 *~

Single Program Multiple Data Paradigm


Single Program Multiple Data Paradigm

bourbaki.Examples> id
uid=3191(comp309) gid=6310(admin) groups=6310(admin)
bourbaki.Examples>

bourbaki.une.edu.au.Examples> ./spmd2
me = 0 mytid = 262155
token ring done
bourbaki.une.edu.au.Examples> 
bourbaki.une.edu.au.Examples> id
uid=794(comp381) gid=6310(admin) groups=6310(admin)
bourbaki.une.edu.au.Examples> more /tmp/pvml.794
...
[t80040000] 09/30 12:44:27 [t40072] me = 13 mytid = 262258
[t80040000] 09/30 12:44:27 [t40073] me = 14 mytid = 262259
[t80040000] 09/30 12:44:27 [t40074] me = 15 mytid = 262260
[t80040000] 09/30 12:44:27 [t40066] I'm ring node 1
[t80040000] 09/30 12:44:27 [t40066] I'm ring node 1 with token -9
[t80040000] 09/30 12:44:27 [t40067] I'm ring node 2
[t80040000] 09/30 12:44:27 [t40067] I'm ring node 2 with token -9
[t80040000] 09/30 12:44:27 [t40068] I'm ring node 3
[t80040000] 09/30 12:44:27 [t40068] I'm ring node 3 with token -9
[t80040000] 09/30 12:44:27 [t40069] I'm ring node 4
[t80040000] 09/30 12:44:27 [t40069] I'm ring node 4 with token -9
...
bourbaki.une.edu.au.Examples>

PVM Synchronisation man Page Items

int inum = pvm_joingroup(char *group);

PVM Synchronisation man Page Items

inum = pvm_joingroup("Brett's Big BAD Group");

PVM Synchronisation man Page Items

int info = pvm_freezegroup(char *group, int count);

PVM Synchronisation man Page Items

int info = pvm_barrier(char *group, int count);

PVM Synchronisation man Page Items

inum = pvm_barrier("Mitch's Big BAD Group", 43);

PVM Synchronisation man Page Items

int info = pvm_lvgroup(char *group);
info = pvm_lvgroup("Any group that would have me as a member!" );

PVM Synchronisation man Page Items

int tid = pvm_gettid(char *group, int inum);
fool = pvm_gettid("Any group that would have me as a member!", 0);

Summary


class: middle, center, inverse

Questions?


Reading