Introduction to MPI and OpenMP myson @ postech.ac.kr CSE700-PL @ - - PowerPoint PPT Presentation

introduction to mpi and openmp
SMART_READER_LITE
LIVE PREVIEW

Introduction to MPI and OpenMP myson @ postech.ac.kr CSE700-PL @ - - PowerPoint PPT Presentation

Introduction to MPI and OpenMP myson @ postech.ac.kr CSE700-PL @ POSTECH Programming Language Laboratory p.1/18 Outline MPI and OpenMP Definition Characteristics Flow models Examples Compiling and Execution Resources Programming


slide-1
SLIDE 1

Introduction to MPI and OpenMP

myson @ postech.ac.kr CSE700-PL @ POSTECH

Programming Language Laboratory – p.1/18

slide-2
SLIDE 2

Outline

MPI and OpenMP Definition Characteristics Flow models Examples Compiling and Execution Resources

Programming Language Laboratory – p.2/18

slide-3
SLIDE 3

What are MPI and OpenMP?

Message Passing Interface (MPI)

  • MPI is a library specification for message-passing,

proposed as a standard by a broadly based committee

  • f vendors, implementors, and users.

Programming Language Laboratory – p.3/18

slide-4
SLIDE 4

What are MPI and OpenMP?

Open Multi Processing (OpenMP)

  • OpenMP is a specification for a set of compiler

directives, library routines, and environment variables that can be used to specify shared memory parallelism in Fortran and C/C++ programs.

Programming Language Laboratory – p.4/18

slide-5
SLIDE 5

MPI vs. OpenMP

MPI OpenMP Distributed memory model Shared memory model

  • n Distributed network
  • n Multi-core processors

Message based Directive based Flexible and expressive Easier to program and debug

Programming Language Laboratory – p.5/18

slide-6
SLIDE 6

MPI Flow Model

Message Passing - Send and Receive a message, size, type, source, dest, tag, communicator, status

Programming Language Laboratory – p.6/18

slide-7
SLIDE 7

OpenMP Flow Model

Directives (C/C++) - #pragma omp directives [clauses] directives - parallel, for, single, etc.

Programming Language Laboratory – p.7/18

slide-8
SLIDE 8

A Simple Example

A serial program

#include<stdio.h> #define PID 0 main(){ int i; printf("Greetings from process %d!/n", PID); } Greetings from process 0

Programming Language Laboratory – p.8/18

slide-9
SLIDE 9

A Simple Example(cont.)

A parallel program using MPI (cont.)

#include<mpi.h> main(int argc, char** argv){ . . . MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &my_rank); MPI_Comm_size(MPI_COMM_WORLD, &p);

Parallel Region

MPI_Finalize(); }

Programming Language Laboratory – p.9/18

slide-10
SLIDE 10

A Simple Example(cont.)

A parallel program using MPI

if ( my_rank != 0){ sprintf(message, "Greetings from process %d!", my_rank); dest = 0; MPI_Send(message, strlen(message)+1, MPI_CHAR, dest, tag, MPI_COMM_WORLD); } else{ /* my_rank = 0 */ for (source = 1; source < p; source++){ MPI_Recv(message, 100, MPI_CHAR, source, tag, MPI_COMM_WORLD, &status); printf("%s/n", message); } }

Programming Language Laboratory – p.10/18

slide-11
SLIDE 11

A Simple Example(cont.)

A parallel program using MPI (cont.)

Greetings from process 1 Greetings from process 2 Greetings from process 3

Programming Language Laboratory – p.11/18

slide-12
SLIDE 12

A Simple Example(cont.)

A parallel program using OpenMP

#include<stdio.h> #include<omp.h> main(){ int id; #pragma omp parallel { id = omp_get_thread_num(); printf("Greetings from process %d!/n", id); } }

Programming Language Laboratory – p.12/18

slide-13
SLIDE 13

A Simple Example(cont.)

A parallel program using OpenMP (cont.)

Greetings from process 1 Greetings from process 0 Greetings from process 2 Greetings from process 3

Programming Language Laboratory – p.13/18

slide-14
SLIDE 14

Which is better?

Programming Language Laboratory – p.14/18

slide-15
SLIDE 15

Compiling

GCC and MPICH2 for MPI GCC-4.2 with library libgomp for OpenMP MPI mpicc -o example.out example.c OpenMP gcc-4.2 -o example.out example.c -fopenmp

Programming Language Laboratory – p.15/18

slide-16
SLIDE 16

Execution

∼/.mpd.conf for MPI execution

vi(or emacs) ∼/.mpd.conf secretword=<your secretword> chmod 600 ∼/.mpd.conf MPI (using multi-core processors) mpdboot mpiexec -n #processes ./example.out mpdallexit OpenMP ./example.out

Programming Language Laboratory – p.16/18

slide-17
SLIDE 17

Resources

Machine (Plquad: plquad.postech.ac.kr) Intel Core 2 Quad Q6600 (quad-core) 1G DDR RAM If you want to use it, email the instructors. Materials - resource tab on the course web-page MPI & OpenMP install guides MPI & OpenMP tutorials . . .

Programming Language Laboratory – p.17/18

slide-18
SLIDE 18

End

Any Questions. . . ?

Programming Language Laboratory – p.18/18