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

COMP309/509 - Parallel and Distributed Computing

Lecture 5 - Interprocess Communication

By Mitchell Welch

University of New England


Reading


Summary


Fibonacci on the Ring of Processes


Fibonacci on the Ring of Processes

.center[center-aligned image]


Fibonacci on the Ring of Processes


Fibonacci on the Ring of Processes


Fibonacci on the Ring of Processes

void get_integers(char buff[], long *first,long *second){
  read(STDIN_FILENO, buff, BUFFSIZE);
  *first  = atol(strtok(buff," "));
  *second = atol(strtok(NULL," ")); 
}

Fibonacci on the Ring of Processes

#include <stdio.h>  /* for printf */
#include <stdlib.h> /* for atol   */
#include <unistd.h> /* for read   */
#include <string.h> /* for strtok */
#define BUFFSIZE 50
void get_integers(char buff[], long *first, long *second){
  read(STDIN_FILENO, buff, BUFFSIZE);
  *first  = atol(strtok(buff, " "));
  *second = atol(strtok(NULL, " ")); 
}
int main(void){
  char buff[BUFFSIZE];
  long first, second;
  get_integers(buff, &first, &second);
  printf("Got %ld and %ld\n", first, second);
  return 0;
}

Fibonacci on the Ring of Processes


Fibonacci on the Ring of Processes


Fibonacci on the Ring of Processes


Fibonacci on the Ring of Processes

void safe_get_integers(char buff[], long *first, long *second){
  char* token = NULL;
  int bytes;
  if((first == NULL) || (second == NULL)) return;
  bytes = read(STDIN_FILENO, buff, BUFFSIZE);
  if(bytes < 0){
    *first  = 0;
    *second = 0;
  } else {
  *first  = atol((((token = strtok(buff," ")) == NULL) ?  "0" : token));
  *second = atol((((token = strtok(NULL," ")) == NULL) ?  "0" : token)); 
  }
}

Fibonacci on the Ring of Processes

21641:examples $ ./example01

Segmentation fault: 11
21641:examples $ ./example01
1
Segmentation fault: 11
21641:examples $ ./example01
1 2
Got 1 and 2
21641:examples $ ./example02

Got 0 and 0
21641:examples $ ./example02
1
Got 1 and 0
21641:examples $ ./example02
1 3
Got 1 and 3
21641:examples $ 

Fibonacci on the Ring of Processes

int send_numbers(char buff[], long num1, long num2){
  sprintf(buff, "%ld %ld", num1, num2);
  write(STDOUT_FILENO, buff, strlen(buff) + 1);
}

Fibonacci on the Ring of Processes

void safe_sum(long first, long *second, long *third){
  *third = first + *second;
  if(*third < 0){
    *third   = 0;
    *second  = 0; };
}

Fibonacci on the Ring of Processes

void report_sum(int i,long fst,long old_snd,long snd,long thrd){
  fprintf(stderr,
          "\nProcess %d 
            with PID %d 
      and parent PID %d 
       recieved %ld %ld
       and sent %ld %ld.\n",
                      i, 
          (int)getpid(), 
         (int)getppid(),
                  fst, 
             old_snd, 
                 snd, 
                  thrd); }

Fibonacci on the Ring of Processes

int main(int argc,  char *argv[ ]){
   int    i;               
   char   buff[BUFFSIZE];  
   long   first;           
   long   second;          
   long   third ;          
   /* make the ring here */
   {
     /* ring process code  */     
     long old_second;
     if(i == 1){
       /* mother of all processes */
       send_numbers(buff, 1,1); }
     /* all processes     */
     get_integers(buff, &first, &second);
     old_second = second;
     safe_sum(first,&second,&third);
     if(i > 1){
         send_numbers(buff, second, third);
         report_sum( i, first, old_second, second, third); }
     else {
      fprintf(stderr,
              "\n\nfibonacci(%d) = %ld\n\n", 
              nprocs, 
              first); }
     exit (EXIT_SUCCESS); 
   }
}     /* end of main program here */

Fibonacci on the Ring of Processes


Patterns of Parallelisation


Patterns of Parallelisation

.center[center-aligned image]


Patterns of Parallelisation


Patterns of Parallelisation

.center[center-aligned image]


Patterns of Parallelisation


Patterns of Parallelisation

.center[center-aligned image]


Patterns of Parallelisation


Patterns of Parallelisation

.center[center-aligned image]


Summary


class: middle, center, inverse

Questions?


Reading