COMP309/509 - Parallel and Distributed Computing

Lecture 13 - The Beowulf Cluster and PVM

By Mitchell Welch

University of New England


Reading


Summary


The Beowulf Cluster


The Beowulf Cluster


The Beowulf Cluster


The Beowulf Cluster


The Beowulf Cluster


The Beowulf Cluster


The Beowulf Cluster


Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)

#include "pvm3.h"

as well as linking it with the appropriate dohickies:

-Wall hello.c -L/usr/share/pvm3/lib/LINUXX86_64 -I/usr/share/pvm3/include -lpvm3 -o hello 

Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)


Parallel Virtual Machine (PVM)

Download, then install the rpm:

su        # Become the root user
password:
rpm -hiv pvm-3.4.4-16.i386.rpm
exit
#####

Parallel Virtual Machine (PVM)

#!/bin/sh
cd /usr/include
ln -s ../share/pvm3/include/pvm3.h
ln -s ../share/pvm3/include/pvmproto.h
ln -s ../share/pvm3/include/pvmtev.h
cd /usr/lib
ln -s ../share/pvm3/lib/LINUX/libpvm3.a
ln -s ../share/pvm3/lib/LINUX/libpvmtrc.a
ln -s ../share/pvm3/lib/LINUX/libgpvm3.a
cd /usr/bin
ln -s ../share/pvm3/lib/LINUX/pvmgs
Copy this to your home system and run it as the root user.

Parallel Virtual Machine (PVM)

PVM_ROOT=/usr/share/pvm3/
export PVM_ROOT

Parallel Virtual Machine (PVM)

127.0.0.1 localhost myplace

Parallel Virtual Machine (PVM)

~/pvm3/bin/LINUXX86_64

Parallel Virtual Machine (PVM)

my_machine>pvm
pvm> conf
1 host, 1 data format
                    HOST     DTID     ARCH     SPEED
                 myplace    40000  LINUXX86_64    1000
pvm> quit
pvmd still running.
my_machine>

Firing Up a PVM Program

gcc -Wall master.c -L/usr/share/pvm3/lib/LINUXX86_64 -I/usr/share/pvm3/include -lpvm3 -o master  
gcc -Wall slave.c -L/usr/share/pvm3/lib/LINUXX86_64 -I/usr/share/pvm3/include -lpvm3 -o slave

Firing Up a PVM Program

cp slave ~/pvm3/bin/LINUXX86_64
cp master ~/pvm3/bin/LINUXX86_64
cd ~/pvm3/bin/LINUXX86_64
./master
$ pvm
pvmd already running.
pvm> halt
$

Firing Up a PVM Program


Firing Up a PVM Program

ssh bourbaki  # log on bourbaki.
ssh b1        # Login to one of the nodes.
pvm           # Start your pvm machine on 4 systems
add b2
add b3
add b4
quit

Firing Up a PVM Program


# From any machine
cp slave.c master.c $home/pvm3/bin/LINUXX86_64
ssh bourbaki 
ssh b1      
cd pvm3/bin/LINUXX86_64
gcc -Wall master.c -L/usr/share/pvm3/lib/LINUXX86_64 -I/usr/share/pvm3/include -lpvm3 -o master  
gcc -Wall slave.c -L/usr/share/pvm3/lib/LINUXX86_64 -I/usr/share/pvm3/include -lpvm3 -o slave  
pvm
add b2
add b3
add b4
quit
./master

Firing Up a PVM Program


Firing Up a PVM Program

int pvm_mytid( void )

Firing Up a PVM Program


Firing Up a PVM Program

#include <stdio.h>
#include <stdlib.h>
#include "pvm3.h"
int main(void){
  int cc, tid;
  char buf[100];
  printf("i'm t%x\n", pvm_mytid());
  cc = pvm_spawn("hello_other", NULL, 0, "", 1, &tid);
  if (cc == 1) {
    cc = pvm_recv(-1, -1);
    pvm_bufinfo(cc, NULL, NULL, &tid);
    pvm_upkstr(buf);
    printf("from t%x: %s\n", tid, buf);
  } else
    printf("can't start hello_other\n");
  pvm_exit();
  exit(EXIT_SUCCESS);
}

Firing Up a PVM Program


Firing Up a PVM Program

int pvm_spawn(char *task,
              char **argv, 
               int flag,
               char *where, 
               int ntask, 
               int *tids )

Firing Up a PVM Program

$HOME/pvm3/bin/$PVM_ARCH/

Firing Up a PVM Program


Firing Up a PVM Program


Firing Up a PVM Program


#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include "pvm3.h"
int main(void){
  int ptid;
  char buf[100];
  ptid = pvm_parent();
  strcpy(buf, "hello, world from ");
  gethostname(buf + strlen(buf), 64);
  pvm_initsend(PvmDataDefault);
  pvm_pkstr(buf);
  pvm_send(ptid, 1);
  pvm_exit();
  exit(EXIT_SUCCESS);
}

Firing Up a PVM Program


Firing Up a PVM Program


Firing Up a PVM Program


Firing Up a PVM Program


Firing Up a PVM Program


Firing Up a PVM Program

[comp309@immortal Examples]$ pvm
pvm> conf
conf
1 host, 1 data format
                    HOST    DTID      ARCH   SPEED       DSIG
                immortal   40000   LINUXX86_64 1000 0x00408841
pvm> quit
quit
Console: exit handler called
pvmd still running.

Firing Up a PVM Program

[comp309@immortal Examples]$ make
gcc -Wall hello.c -L/usr/share/pvm3/lib/LINUXX86_64 -I/usr/share/pvm3/include -lpvm3 -o hello  
gcc -Wall hello_other.c -L/usr/share/pvm3/lib/LINUXX86_64 -I/usr/share/pvm3/include -lpvm3 -o hello_other

Firing Up a PVM Program

[comp309@turing Examples]$ cp hello hello_other /home/comp309/pvm3/bin/LINUXX86_64/
Now we can run them.
[comp309@turing Examples]$ ./hello
i'm t40002
from t40003: hello, world from immortal
[comp309@turing Examples]$ pvm
pvmd already running.
pvm> halt
halt
Terminated

Firing Up a PVM Program

[comp309@bourbaki comp309] rlogin b1
[comp309@b1 comp309] pvm
pvm> add b2
add b2
1 successful
                    HOST     DTID
                      b2    80000
pvm> add b3
add b2
1 successful
                    HOST     DTID
                      b2    c0000
pvm> add b4 b5 b6 b7 b8
5 successful
                    HOST     DTID
                      b4   100000
                      b5   140000
                      b6   180000
                      b7   1c0000
                      b8   200000

Firing Up a PVM Program

[comp309@b1 comp309] cd Lectures/Lecture_13/Examples/
b1.Examples> ./hello
i'm t40002
from t80001: hello, world from b2
b1.Examples> pvm
pvmd already running.
pvm> halt
halt
Terminated

Firing Up a PVM Program

b1 
b2 
b3 
b4 
b5 
b6 
b7 
b8

Firing Up a PVM Program

Then do something like:

b1 % pvm setup
pvm> conf
8 hosts, 1 data format
 HOST     DTID     ARCH       SPEED
   b1    40000    LINUXX86_64 1000
   b2    80000    LINUXX86_64 1000
   b3    c0000    LINUXX86_64 1000
   b4   100000    LINUXX86_64 1000
   b5   140000    LINUXX86_64 1000
   b6   180000    LINUXX86_64 1000
   b7   1c0000    LINUXX86_64 1000
   b8   200000    LINUXX86_64 1000
pvm> quit

pvmd still running.
b1 % 

Firing Up a PVM Program

COMPILER = gcc
CFLAGS =  -Wall
LIBS = -L$(PVM_ROOT)/lib/$(PVM_ARCH) -I$(PVM_ROOT)/include -lpvm3
GLIBS = ${LIBS} -lgpvm3 
EXES = hello hello_other 
all:   ${EXES}

hello: hello.c
    ${COMPILER} ${CFLAGS} hello.c $(LIBS) -o hello  

hello_other: hello_other.c
    ${COMPILER} ${CFLAGS} hello_other.c $(LIBS) -o hello_other

host:
    cp -f ${EXES} ${HOME}/pvm3/bin/$(PVM_ARCH)/  

clean: 
    rm -f *~ *.o  ${EXES}

Summary


Questions?


Reading