1 / 10

Parallel Processing

Parallel Processing. To study the communication among the nodes of a cluster. MPI-Message Passing Interface. A library of functions or an API Allows communication between processors in a distributed memory architecture. Affords portability. Uses either a C or a FORTRAN compiler.

hazel
Download Presentation

Parallel Processing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Parallel Processing To study the communication among the nodes of a cluster

  2. MPI-Message Passing Interface • A library of functions or an API • Allows communication between processors in a distributed memory architecture. • Affords portability. • Uses either a C or a FORTRAN compiler.

  3. MPI Data Types

  4. MPI Program # include <stdio.h> # include <mpi.h> main(int argc, char **argv) { //coding MPI_Init(&argc, &argv); //coding MPI_Finalize(); //coding }

  5. MPI Init O 1 4 Network 3 2

  6. MPI Finalize O 1 4 Network 3 2

  7. Logging into linux • To login to linux, login name is test, password is test. • Applications>system>terminal • test@linux:~>pwd /home/test

  8. Remote login to master node • rlogin 172.16.66.27 –l pp Password: asdfgh • vi <filename>.c • To go to insert mode press i • To come out of insert mode press Esc.

  9. Saving and quiting Suppose I had written vi urooj.c • :w save file as urooj.c • :w ur1.c save file as ur1.c • :w /xy/urooj.csave file as urooj.c in /xy • :w /xy/ur.csave file as ur.c in /xy • :wqsave and quit • :wq ur1.c save as ur1.c and quit • :wq /xy/urooj.csave file as urooj.c in /xy and quit • :wq /xy/ur.csave file as ur.c in /xy and quit • :q quits only if work has been saved • :q! quits without saving

  10. Compiling and running • mpicc –o <executable file name> <source file name> • mpirun <executable file name> • mpirun –np <no> <executable file name>

More Related