CPS 303 High Performance Computing

Size: px
Start display at page:

Download "CPS 303 High Performance Computing"

Transcription

1 CPS 303 High Performance Computing Wensheng Shen Department of Computational Science SUNY Brockport

2 Chapter 5: Collective communication The numerical integration problem in Chapter 4 is not very efficient. After process 0 reads the input data, it sends the data to other processes in an increasing order in rank. In other words, lower ranked processes receive the data early then higher ranked processes, that results in an idle time of higher ranked processes. This is not a desired feature of parallel computing. Similar situation happens when process 0 does all the work of collecting and adding. The main point of parallel computing is to get multiple processes to collaborate on solving a problem. We will deal with this issue in Chapter 5.

3 5.1 Tree-structured communication Stage 1: 0 1 Stage 2: Last stage: number of stages: log 2 p If we have 1024 processes, how many stages do we need to send a message from the root to all other processes? Great savings in time.

4 The non tree-structured communication To send data from 1 process to all other processes: If (my_rank == 0) for (i=1; i<p; i++) send data to process i Else for(i=1; i<p; i++) receive data from process o There are p-1 stages of send and receive!

5 Modify the Get_data function to use a treestructured distribution scheme for (stage = first; stage <= last; stage++) { if(i_receive(stage, my_rank, &source) ) Receive(data, source); else if (I_send(stage, my_rank, p, &dest) ) Send(data, dest); If during the current stage the calling process receives data, then I_receive function returns 1, otherwise it returns 0. To implement this, we have to know (1) Whether a process receives and if so, the source. (2) Whether a process sends and if so, the destination.

6 To implement tree-structured communication (1) 0 sends to 1; (2) 0 sends to 2; 1 sends to 3; (3) 0 sends to 4; 1 sends to 5; 2 sends to 6; 3 sends to 7. If 2 stage my _ rank < Then I receive from If my _ rank < 2 2 stage+ 1 my _ rank 2 stage stage Then I send to my _ rank + 2 stage Note: using C convention, the first stage is stage 0, the second is stage 1

7 Verifications Stage 0: my_rank < 2 0 (process 0) 0 sends to my_rank =1 2 0 =<my_rank<2 1 (prcocess 1) 1 receives from =0 Stage 1: my_rank < 2 1 (processes 0, 1) 0 sends to my_rank =2 1 sends to my_rank =3 2 1 =<my_rank<2 2 2 receives from =0 3 receives from =1

8 int Celing_log2(int x ) { /* use unsigned so that right shift will fill leftmost bit with 0 */ unsigned temp=(unsigned) x-1; int result = 0; while (temp!= 0) { temp = temp >> 1; result = result + 1; return result; Int I_receive(int stage, int my_rank, int* source_ptr) { int power_2_stage; power_2_stage = 1 << stage; if ((power_2_stage<=my_rank) && (my_rank < 2*power_2_stage)) { *source_ptr = my_rank power_2_stage; return 1; else return 0; void Send(float a, float b, int n, int dest) { MPI_Send(&a,1,MPI_FLOAT,dest,0,MPI_COMM_WORLD); MPI_Send(&b,1,MPI_FLOAT,dest,1,MPI_COMM_WORLD); MPI_Send(&n,1,MPI_INT,dest,2,MPI_COMM_WORLD); Void Receive(float* a_ptr, float* b_ptr, int* n_ptr, int source) { MPI_Status status; MPI_Recv(a_ptr,1,MPI_FLOAT,source,0,MPI_COMM_WORLD,&status); MPI_Recv(b_ptr,1,MPI_FLOAT,source,1,MPI_COMM_WORLD,&status); MPI_Recv(n_ptr,1,MPI_FLOAT,source,2,MPI_COMM_WORLD,&status); Void Get_data1(float* a_ptr, float* b_ptr, int* n_ptr, int my_rank, int p) { int source; int dest; int stage; if(my_rank==0) { printf( enter a, b, and n\n ); scanf( %f %f %d, a_ptr, b_ptr, c_ptr); for(stage=0; stage<ceiling_log2(p); stage++) { if(i_receive(stage, my_rank, &source); Receive(a_ptr, b_ptr, n_ptr, source); else if(i_send(stage, my_rank, p, &dest) Send(*a_ptr, *b_ptr, *n_ptr, dest);

9 5.2 Broadcast Collective communication: a communication pattern that involves all the processes in a communicator. Broadcast: a broadcast is a collective communication in which a single process sends the same data to every process in the communicator. Hand-coded broadcast is very complicated and the programmer has to know the system topology. Root: the process that has data to send and initiates the broadcast function. MPI has a built-in broadcast function, MPI_Bcast();

10 The syntax of MPI_Bcast() int MPI_Bcast(void * message /* in/out */, int count /* in */, MPI_Datatype datatype /* in */, int root /* in */, MPI_Comm comm /* in */) MPI_Bcase sends a copy to the data in message on the process with rank root to each process in the communicator comm. It is called by all the processes in the communicator. A broadcast message cannot be received with MPI_Recv. Count and datatype are the same so all processes in the communicator. Message is identified as an in/out parameter, in the case of MPI_Bcast, message is in on the root process, and out on other processes.

11 New version of Get_data() Void Get_data2() { float* a_ptr /* out */, float* b_ptr /* out */, int* n_ptr /* in */, int my_rank /* in */ if(my_rank == 0) { printf( enter a, b, and n\n ); scanf( %f %f %d, a_ptr, b_ptr, n_ptr); MPI_Bcast(a_ptr, 1, MPI_FLOAT, 0, MPI_COMM_WORLD); MPI_Bcast(b_ptr, 1, MPI_FLOAT, 0, MPI_COMM_WORLD); MPI_Bcast(n_ptr, 1, MPI_INT, 0, MPI_COMM_WORLD);

12 Performance comparison processes ncube2 Paragon SP2 Version 1 Version 2 Version 1 Version 2 Version1 Version Broadcast time (times are in milliseconds; version 1 uses a linear loop of sends from process 0, version 2 uses MPI_Bcast)

13

14 5.3 Tags, safety, buffering, and synchronization MPI_Bcast does not use tags, all other collective communication functions on MPI do not use tags. Why? Look at some examples.

15 Time Process A MPI_Send to B, tag=0 MPI_Send to B, tag=1 Local work Local work Process B Local work Local work MPI_Recv for A, tag=1 MPI_Recv from A, tag=0 For the above send and receive sequences, process A sends multiple messages to process B, and B decided how to handle these messages on the basis of the tag. The send/receive sequence of events requires that the system buffers the messages being sent to process B. Memory must be set aside for storing messages before a receive has been executed. The message envelop contains: (1) the rank of the receiver, (2) the rank of the sender, (3) a tag, (4) a communicator. There is no information specifying where the message should be stored by the receiving process, until B calls MPI_Recv When B calls MPI_Recv, the system software, after executing the receive function, can see which buffered message has an envelop that matches the parameters specified by the receive. If there isn t one, it waits until one arrives. In the case of no buffering, A must wait until it receives a RTR (ready to receive) signal from B with tag 1, similarly, B must wait until it receives a RTS (ready to send) signal from A with tag 0. The program will deadlock. A waits for B, and B waits for A.

16 The case of broadcast Time Process A Process B Process C 1 MPI_Bcast &x Local work Local work 2 MPI_Bcast &y Local work Local work 3 Local work MPI_Bcast &y MPI_Bcast &x 4 Local work MPI_Bcast &x MPI_Bcast &y Suppose we have three processes, A, B, and C, and A is broadcasting two floats, x and y, to B and C. Suppose that on process A, x=5 and y=10. When the broadcasting is completed on all three processes, x=5 and y=10 on processes A and C, but x=10 and y=5 on process B. why? Broadcasting operation was designed to be synchronized, i.e., a broadcast would not return until every process has received the broadcast data. This restriction has been relaxed in current systems. If the system has enough buffering, A can complete two broadcasts before the other processes even begin their call. However, the effect must be the same as if the processes are synchronized. In other words, the first MPI_Bcast on B matches the first MPI_Bcast on A. Therefore B stores the first value it receives, 5, in y.

17 5.4 Reduce In the final summation part of trapezoidal integration, process 0 has to do lots of extra work. Similar to sending input data to different processes, We can distribute the summation among all processes: 1 (a) 4 sends to 0; 5 sends to 1; 6 sends to 2; 7 sends to 3; (b) 0 adds its integral to that of 4; 1 adds its integral to that of 5; etc. 2 (a) 2 sends to 0; 3 sends to 1. (b) 0 adds; 1 adds. 3 (a) 1 sends to 0 (b) 0 adds This can be done using a reduction function MPI_Reduce();

18 Int MPI_Reduce( void* operand /* in */, void* result /* out */, int count /* in */, MPI_Datatype datatype /* in */, MPI_Op operator /* in */, int root /* in */, MPI_Comm comm /* in */) MPI_Reduce combines the operands stored in the memory referenced by operand using operation operator and stores the result in *result on root process. Both operand and result refer to count memory locations with type datatype. MPI_Reduce must be called by all processes in the communicator comm, and count, datatype, operator, and root must be the same on each process. The parameter operator can take on one of the predefined values listed in a table in the next slide.

19 Operation Name MPI_MAX MPI_MIN MPI_SUM MPI_PROD MPI_LAND MPI_BAND MPI_LOR MPI_BOR MPI_LXOR MPI_BXOR MPI_MAXLOC MPI_MINLOC Meaning Maximum Minimum Sum Product Logical and Bitwise and Logical or Bitwise or Logical exclusive or Bitwise exclusive or Maximum and location of maximum Minimum and location of minimum

20 The last several lines of the trapezoidal rule program can be rewritten as: /* add up the integrals calculated by each process */ MPI_Reduce(&integral, &total, 1, MPI_FLOAT, MPI_SUM, 0, MPI_COMM_WORLD); /* print the result */ Note: do not pass the same arguments to both operand and result. /* attempt to store the result in the same location as the operand. Illegal call */ MPI_Reduce(&integral, &integral, 1, MPI_FLOAT, MPI_SUM, 0, MPI_COMM_WORLD); /* print the result */ Reason: without the extra argument, an implementation may be forced to provide large temporary buffers.

21 5.5 Dot product If x=(x 0,x 1,..,x n-1 ) T and y=(y 0,y 1,,y n-1 ) T are n-dimensional vectors of real numbers, then their dot product is x y = x 0 y 0 + x 1 y x n-1 y n-1 Float Serial_dot( float x[] /* in */, float y[] /* in */, int n /* in */) { int i; float sum=0.0; for(i=0;i<n;i++) { sum = sum + x[i]*y[i]; return;

22

23 process 0 1 k p-1 components x 0,x 1,,x N-1 x N,x N+1,,x 2N-1 x kn,x kn+1,,x (k+1)n-1 x (p-1)n,x (p-1)n+1,,x n-1 If we have p processes, and n is divisible by p, we can divide the vectors among the processes so that each process has N=n/p components of the vector.

24 Parallel dot product Float paralle_dot( float local_x[] /* in */, float local_y[] /* in */, int n_bar /* in */) { float local_dot; float dot=0.0; float Serial_dot(float x[], float y[], int m); local_dot=serial_dot(local_x, local_y, n_bar); MPI_Reduce(&local_dot, &dot, 1, MPI_FLOAT, MPI_SUM, 0, MPI_COMM_WORLD); return dot;

25 5.6 Allreduce If we want each process to return the correct dot product? Call MPI_Bcast after MPI_Reduce A more efficient way: MPI_Allreduce()

26 A butterfly communication structure for eight processes

27 (1) a. processes 0 and 4 exchange their local results, process 1 and 5 exchange, processes 2 and 6 change, processes 3 and 7 exchange. b. each process adds its result to the result just received. (2) a. processes 0 and 2 exchange their intermediate results, processes 1 and 3 exchange theirs, processes 4 and 6 exchange, and processes 5 and 7 exchange. b. each process adds. (3) a. processes 0 and 1 exchange, processes 2 and 3 exchange, processes 4 and 5 exchange, and processes 6 and 7 exchange. b. each process adds.

28 int MPI_Allreduce( void* operand /* in */, void* result /* out */, int count /* in */, MPI_Datatype datatype /* in */, MPI_Op operator /* in */, MPI_Comm comm /* in */) MPI_Allreduce is used in exactly the same way as MPI_Reduce. The only difference is that the result of he reduction is returned in result on all the processes. Hence there is no root parameter.

29 5.7 Gather and scatter For an m n matrix A=(a ij ) m n and an n-dimensional vector x=(x 0,x 1,,x n-1 ), the matrix vector product y=ax can be performed by taking the dot product of each row of A with x. if A has m rows, we will then form m dot products. The product vector y will consist of m entries: y=(y 0,y 1,,y m-1 ) and y k =a k,0 x 0 +a k,1 x 1 + +a k,n-1 x n-1

30

31 Void Serial_matrix_vector_prod( MATRIX_T A /* in */, int m /* in */, int n /* in */, float x[] /* in */, float y[] /* out */) { int k, j; for (k=0; k<m; k++) { y[k]=0.0; for(j=0; j<n; j++) y[k] = y[k] + A[k][j]*x[j];

32 Block-row partition In block-row partition, we partition the matrix into blocks of consecutive rows, and assign a block to each process. Example m=8, n=4, and p=4: process a 00 a 20 a 40 a 60 a 01 a 11 a 21 a 31 a 41 a 51 a 61 a 70 a 63 a 71 Elemens of A a 02 a 12 a 22 a 32 a 42 a 52 a 62 a 72 a 13 a 10 a 03 a 33 a 30 a 23 a 53 a 50 a 43 a 73

33 A x y Process 0 Process 1 Process 2 = Process 3 Mappings of A, x and y for matrix-vector product

34 In order to form the dot product of each row of A with x, we need to either gather all of x onto each process or scatter each row of A across the processes. For example, suppose, m=n=p=4, then, before we form the dot product, a 00, a 01, a 03, and x 0 are assigned to process 0, while x 1 is assigned to process 1, x 2 is assigned to process 2, and x 3 is assigned to process 3. To form the dot product of the first row of A with x, we can either send x 1, x 2, and x 3 to process gather or we can send a 01 to process 1, a 02 to process 2, and a 03 to process scatter.

35 Process 0 x0 Process 1 Process 2 x1 x2 Gather Process 3 x3 /* assumes n is divisible by p */ MPI_Gather(local_x, n/p, MPI_FLOAT, global_x, n/p, MPI_FLOAT, 0, MPI_COMM_WORLD);

36 int MPI_Gather( void* send_data /* in */, int send_count /* in */, MPI_Datatype send_type /* in */, void* recv_data /* out */, int recv_count /* in */, MPI_Datatype recv_type /* in */, int root /* in */, MPI_Comm comm /* in */) MPI_Gather collects the data referenced by send_data from each process in the communicator comm and stores the data in the root process in the memory referenced by recv_data.

37

38 Process 0 a 00 a 01 a 02 a 03 Process 1 Scatter Process 2 Process 3 /* Assumes n is divisible by p */ MPI_Scatter(&(localA[0][0]), n/p, MPI_FLOAT, row_segment, n/p, MPI_FLOAT, 0, MPI_COMM_WORLD);

39 int MPI_Scatter( void* send_data /* in */, int send_count /* in */, MPI_Datatype send_type /* in */, void* recv_data /* out */, int recv_count /* in */, MPI_Datatype recv_type /* in */, int root /* in */, MPI_Comm comm /* in */) MPI_Scatter splits the data referenced by send_data on the root process into p segments, each of which consists of send_count elements of type send_type. The first segment is sent to process 0, the second to process 1, etc. The send parameters are significant only on the root process. In most cases send_count will be the same as recv_count and send_type will be the same as recv_type. The parameters root and comm must be the same on all processes.

40

41 5.8 Allgather How to carry parallel matrix-vector multiplication using MPI_Gather() and MPI_Scatter()? MPI_Scatter: suppose we scatter each row of A, then after the scatter of row 0, process q will compute a 0q x q, i.e., the individual terms in the dot product will be assigned to different processes. Thus we will need to call MPI_Reduce to finish the dot product. More communication is needed. Process Products a 00 x 0 a 01 x 1 a 02 x 2 a 03 x 3

42 MPI_Gather(): we can gather x onto each process and form the dot product of each local row of A with x. The kth element of y is assigned to the same process as the kth row of A, and the kth element of y is computed by forming the dot product of the kth row of A with x. To do this, we need to call MPI_Gather() p times. for( root=0; root<p; root++) { MPI_Gather(local_x, n/p, MPI_FLOAT, global_x, n/p, MPI_FLOAT, root, MPI_COMM_WORLD);

43 A better approach based on butterfly scheme is used to simultaneously gather all of x onto each process, the MPI_Allgather() function. int MPI_Allgather( void* send_data /* in */, int send_count /* in */, MPI_Datatype send_type /* in */, void* recv_data /* out */, int recv_count /* in */, MPI_Datatype recv_type /* in */, MPI_comm comm /* in */) It gathers the contents of each process s send_data into each process s recv_data.

44 /* all arrays are allocated in calling program */ Void Parallel_matrix_vector_prod( LOCAL_MATRIX_T local_a /* in */, int m /* in */, int n /* in */, float local_x[] /* in */, float global_x[]/* in */, float local_y[] /* out */, int local_m /* in */, int local_n /* in */) { /* local_m = m/p, local_n = n/p */ int i, j; MPI_Allgather(local_x, local_n, MPI_FLOAT, global_x, local_n, MPI_FLOAT, MPI_COMM_WORLD); for(i=0; i<local_m; i++) { local_y[i] = 0.0; for (j=0; j<n; j++) { local_y[i] = local_y[i] + local_a[i][j]*global_x[j];

45

46 5.9 Summary Collective communication is the communication that involves all the processes in a communicator. In broadcast, a single process sends the same data to all the other processes in a communicator. In reduction, an operation works on a collection of numbers distributed across the process. In gather, a distributed data structure is collected onto a single process. In scatter, a data structure that is stored on a single process is distributed across the processes.

47 #include <stdio.h> #include "mpi.h" #define MAX_ORDER 100 typedef float LOCAL_MATRIX_T[MAX_ORDER][MAX_ORDER]; main(int argc, char* argv[]) {int my_rank; int p; LOCAL_MATRIX_T local_a; float global_x[max_order]; float local_x[max_order]; float local_y[max_order]; int m, n; int local_m, local_n; void Read_matrix(char* prompt, LOCAL_MATRIX_T local_a, int local_m, int n, int my_rank, int p); void Read_vector(char* prompt, float local_x[], int local_n, int my_rank, int p); void Parallel_matrix_vector_prod( LOCAL_MATRIX_T local_a, int m, int n, float local_x[], float global_x[], float local_y[], intlocal_m, intlocal_n); void Print_matrix(char* title, LOCAL_MATRIX_T local_a, int local_m, int n, int my_rank, int p); void Print_vector(char* title, float local_y[], int local_m, int my_rank, int p); MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD, &p); MPI_Comm_rank(MPI_COMM_WORLD, &my_rank); if (my_rank == 0) { printf("enter the order of the matrix (m x n)\n"); scanf("%d %d", &m, &n); MPI_Bcast(&m, 1, MPI_INT, 0, MPI_COMM_WORLD); MPI_Bcast(&n, 1, MPI_INT, 0, MPI_COMM_WORLD); local_m = m/p; local_n = n/p; Read_matrix("Enter the matrix", local_a, local_m, n, my_rank, p); Print_matrix("We read", local_a, local_m, n, my_rank, p); Read_vector("Enter the vector", local_x, local_n, my_rank, p); Print_vector("We read", local_x, local_n, my_rank, p); Parallel_matrix_vector_prod(local_A, m, n, local_x, global_x, local_y, local_m, local_n); Print_vector("The product is", local_y, local_m, my_rank, p); MPI_Finalize();

48 /**********************************************************************/ void Read_matrix( char* prompt /* in */, LOCAL_MATRIX_T local_a /* out */, int local_m /* in */, int n /* in */, int my_rank /* in */, int p /* in */) { int i, j; LOCAL_MATRIX_T temp; /* Fill dummy entries in temp with zeroes */ for (i = 0; i < p*local_m; i++) for (j = n; j < MAX_ORDER; j++) temp[i][j] = 0.0; if (my_rank == 0) { printf("%s\n", prompt); for (i = 0; i < p*local_m; i++) for (j = 0; j < n; j++) scanf("%f",&temp[i][j]); MPI_Scatter(temp, local_m*max_order, MPI_FLOAT, local_a, local_m*max_order, MPI_FLOAT, 0, MPI_COMM_WORLD); /* Read_matrix */

49 /**********************************************************************/ void Read_vector( char* prompt /* in */, float local_x[] /* out */, int local_n /* in */, int my_rank /* in */, int p /* in */) { int i; float temp[max_order]; if (my_rank == 0) { printf("%s\n", prompt); for (i = 0; i < p*local_n; i++) scanf("%f", &temp[i]); MPI_Scatter(temp, local_n, MPI_FLOAT, local_x, local_n, MPI_FLOAT, 0, MPI_COMM_WORLD); /* Read_vector */ /**********************************************************************/

50 /**********************************************************************/ /* Note that argument m is unused */ void Parallel_matrix_vector_prod( LOCAL_MATRIX_T local_a /* in */, int m /* in */, int n /* in */, float local_x[] /* in */, float global_x[] /* in */, float local_y[] /* out */, int local_m /* in */, int local_n /* in */) { /* local_m = m/p, local_n = n/p */ int i, j; MPI_Allgather(local_x, local_n, MPI_FLOAT, global_x, local_n, MPI_FLOAT, MPI_COMM_WORLD); for (i = 0; i < local_m; i++) { local_y[i] = 0.0; for (j = 0; j < n; j++) local_y[i] = local_y[i] + local_a[i][j]*global_x[j];

Collective communications

Collective communications Lecture 9 Collective communications Introduction Collective communication involves all the processes in a communicator We will consider: Broadcast Reduce Gather Scatter Reason for use: convenience and

More information

Collective Communications I

Collective Communications I Collective Communications I Ned Nedialkov McMaster University Canada CS/SE 4F03 January 2016 Outline Introduction Broadcast Reduce c 2013 16 Ned Nedialkov 2/14 Introduction A collective communication involves

More information

Scientific Computing

Scientific Computing Lecture on Scientific Computing Dr. Kersten Schmidt Lecture 21 Technische Universität Berlin Institut für Mathematik Wintersemester 2014/2015 Syllabus Linear Regression, Fast Fourier transform Modelling

More information

Introduction to MPI: Part II

Introduction to MPI: Part II Introduction to MPI: Part II Pawel Pomorski, University of Waterloo, SHARCNET ppomorsk@sharcnetca November 25, 2015 Summary of Part I: To write working MPI (Message Passing Interface) parallel programs

More information

Outline. Communication modes MPI Message Passing Interface Standard

Outline. Communication modes MPI Message Passing Interface Standard MPI THOAI NAM Outline Communication modes MPI Message Passing Interface Standard TERMs (1) Blocking If return from the procedure indicates the user is allowed to reuse resources specified in the call Non-blocking

More information

NUMERICAL PARALLEL COMPUTING

NUMERICAL PARALLEL COMPUTING Lecture 5, March 23, 2012: The Message Passing Interface http://people.inf.ethz.ch/iyves/pnc12/ Peter Arbenz, Andreas Adelmann Computer Science Dept, ETH Zürich E-mail: arbenz@inf.ethz.ch Paul Scherrer

More information

Introduction to MPI: Lecture 1

Introduction to MPI: Lecture 1 Introduction to MPI: Lecture 1 Jun Ni, Ph.D. M.E. Associate Professor Department of Radiology Carver College of Medicine Information Technology Services The University of Iowa Learning MPI by Examples:

More information

CSE 613: Parallel Programming. Lecture 21 ( The Message Passing Interface )

CSE 613: Parallel Programming. Lecture 21 ( The Message Passing Interface ) CSE 613: Parallel Programming Lecture 21 ( The Message Passing Interface ) Jesmin Jahan Tithi Department of Computer Science SUNY Stony Brook Fall 2013 ( Slides from Rezaul A. Chowdhury ) Principles of

More information

Recap of Parallelism & MPI

Recap of Parallelism & MPI Recap of Parallelism & MPI Chris Brady Heather Ratcliffe The Angry Penguin, used under creative commons licence from Swantje Hess and Jannis Pohlmann. Warwick RSE 13/12/2017 Parallel programming Break

More information

Distributed Systems + Middleware Advanced Message Passing with MPI

Distributed Systems + Middleware Advanced Message Passing with MPI Distributed Systems + Middleware Advanced Message Passing with MPI Gianpaolo Cugola Dipartimento di Elettronica e Informazione Politecnico, Italy cugola@elet.polimi.it http://home.dei.polimi.it/cugola

More information

Outline. Communication modes MPI Message Passing Interface Standard. Khoa Coâng Ngheä Thoâng Tin Ñaïi Hoïc Baùch Khoa Tp.HCM

Outline. Communication modes MPI Message Passing Interface Standard. Khoa Coâng Ngheä Thoâng Tin Ñaïi Hoïc Baùch Khoa Tp.HCM THOAI NAM Outline Communication modes MPI Message Passing Interface Standard TERMs (1) Blocking If return from the procedure indicates the user is allowed to reuse resources specified in the call Non-blocking

More information

Distributed Memory Parallel Programming

Distributed Memory Parallel Programming COSC Big Data Analytics Parallel Programming using MPI Edgar Gabriel Spring 201 Distributed Memory Parallel Programming Vast majority of clusters are homogeneous Necessitated by the complexity of maintaining

More information

Message Passing Interface

Message Passing Interface Message Passing Interface by Kuan Lu 03.07.2012 Scientific researcher at Georg-August-Universität Göttingen and Gesellschaft für wissenschaftliche Datenverarbeitung mbh Göttingen Am Faßberg, 37077 Göttingen,

More information

Collective Communications

Collective Communications Collective Communications Reusing this material This work is licensed under a Creative Commons Attribution- NonCommercial-ShareAlike 4.0 International License. http://creativecommons.org/licenses/by-nc-sa/4.0/deed.en_us

More information

MPI: Parallel Programming for Extreme Machines. Si Hammond, High Performance Systems Group

MPI: Parallel Programming for Extreme Machines. Si Hammond, High Performance Systems Group MPI: Parallel Programming for Extreme Machines Si Hammond, High Performance Systems Group Quick Introduction Si Hammond, (sdh@dcs.warwick.ac.uk) WPRF/PhD Research student, High Performance Systems Group,

More information

MPI MESSAGE PASSING INTERFACE

MPI MESSAGE PASSING INTERFACE MPI MESSAGE PASSING INTERFACE David COLIGNON, ULiège CÉCI - Consortium des Équipements de Calcul Intensif http://www.ceci-hpc.be Outline Introduction From serial source code to parallel execution MPI functions

More information

Parallel Programming. Using MPI (Message Passing Interface)

Parallel Programming. Using MPI (Message Passing Interface) Parallel Programming Using MPI (Message Passing Interface) Message Passing Model Simple implementation of the task/channel model Task Process Channel Message Suitable for a multicomputer Number of processes

More information

Basic MPI Communications. Basic MPI Communications (cont d)

Basic MPI Communications. Basic MPI Communications (cont d) Basic MPI Communications MPI provides two non-blocking routines: MPI_Isend(buf,cnt,type,dst,tag,comm,reqHandle) buf: source of data to be sent cnt: number of data elements to be sent type: type of each

More information

MPI. (message passing, MIMD)

MPI. (message passing, MIMD) MPI (message passing, MIMD) What is MPI? a message-passing library specification extension of C/C++ (and Fortran) message passing for distributed memory parallel programming Features of MPI Point-to-point

More information

HPC Parallel Programing Multi-node Computation with MPI - I

HPC Parallel Programing Multi-node Computation with MPI - I HPC Parallel Programing Multi-node Computation with MPI - I Parallelization and Optimization Group TATA Consultancy Services, Sahyadri Park Pune, India TCS all rights reserved April 29, 2013 Copyright

More information

MPI MESSAGE PASSING INTERFACE

MPI MESSAGE PASSING INTERFACE MPI MESSAGE PASSING INTERFACE David COLIGNON CÉCI - Consortium des Équipements de Calcul Intensif http://hpc.montefiore.ulg.ac.be Outline Introduction From serial source code to parallel execution MPI

More information

Programming with MPI Collectives

Programming with MPI Collectives Programming with MPI Collectives Jan Thorbecke Type to enter text Delft University of Technology Challenge the future Collectives Classes Communication types exercise: BroadcastBarrier Gather Scatter exercise:

More information

MPI Collective communication

MPI Collective communication MPI Collective communication CPS343 Parallel and High Performance Computing Spring 2018 CPS343 (Parallel and HPC) MPI Collective communication Spring 2018 1 / 43 Outline 1 MPI Collective communication

More information

MPI Message Passing Interface

MPI Message Passing Interface MPI Message Passing Interface Portable Parallel Programs Parallel Computing A problem is broken down into tasks, performed by separate workers or processes Processes interact by exchanging information

More information

Parallel Programming in C with MPI and OpenMP

Parallel Programming in C with MPI and OpenMP Parallel Programming in C with MPI and OpenMP Michael J. Quinn Chapter 4 Message-Passing Programming Learning Objectives n Understanding how MPI programs execute n Familiarity with fundamental MPI functions

More information

Collective Communication in MPI and Advanced Features

Collective Communication in MPI and Advanced Features Collective Communication in MPI and Advanced Features Pacheco s book. Chapter 3 T. Yang, CS240A. Part of slides from the text book, CS267 K. Yelick from UC Berkeley and B. Gropp, ANL Outline Collective

More information

What s in this talk? Quick Introduction. Programming in Parallel

What s in this talk? Quick Introduction. Programming in Parallel What s in this talk? Parallel programming methodologies - why MPI? Where can I use MPI? MPI in action Getting MPI to work at Warwick Examples MPI: Parallel Programming for Extreme Machines Si Hammond,

More information

High-Performance Computing: MPI (ctd)

High-Performance Computing: MPI (ctd) High-Performance Computing: MPI (ctd) Adrian F. Clark: alien@essex.ac.uk 2015 16 Adrian F. Clark: alien@essex.ac.uk High-Performance Computing: MPI (ctd) 2015 16 1 / 22 A reminder Last time, we started

More information

CS 470 Spring Mike Lam, Professor. Distributed Programming & MPI

CS 470 Spring Mike Lam, Professor. Distributed Programming & MPI CS 470 Spring 2018 Mike Lam, Professor Distributed Programming & MPI MPI paradigm Single program, multiple data (SPMD) One program, multiple processes (ranks) Processes communicate via messages An MPI

More information

COMP 322: Fundamentals of Parallel Programming

COMP 322: Fundamentals of Parallel Programming COMP 322: Fundamentals of Parallel Programming https://wiki.rice.edu/confluence/display/parprog/comp322 Lecture 37: Introduction to MPI (contd) Vivek Sarkar Department of Computer Science Rice University

More information

CS 470 Spring Mike Lam, Professor. Distributed Programming & MPI

CS 470 Spring Mike Lam, Professor. Distributed Programming & MPI CS 470 Spring 2017 Mike Lam, Professor Distributed Programming & MPI MPI paradigm Single program, multiple data (SPMD) One program, multiple processes (ranks) Processes communicate via messages An MPI

More information

Parallel programming MPI

Parallel programming MPI Parallel programming MPI Distributed memory Each unit has its own memory space If a unit needs data in some other memory space, explicit communication (often through network) is required Point-to-point

More information

Data parallelism. [ any app performing the *same* operation across a data stream ]

Data parallelism. [ any app performing the *same* operation across a data stream ] Data parallelism [ any app performing the *same* operation across a data stream ] Contrast stretching: Version Cores Time (secs) Speedup while (step < NumSteps &&!converged) { step++; diffs = 0; foreach

More information

Capstone Project. Project: Middleware for Cluster Computing

Capstone Project. Project: Middleware for Cluster Computing Capstone Project Project: Middleware for Cluster Computing Middleware is computer software that connects software components or applications. The software consists of a set of enabling services that allow

More information

Message Passing Interface

Message Passing Interface Message Passing Interface DPHPC15 TA: Salvatore Di Girolamo DSM (Distributed Shared Memory) Message Passing MPI (Message Passing Interface) A message passing specification implemented

More information

IPM Workshop on High Performance Computing (HPC08) IPM School of Physics Workshop on High Perfomance Computing/HPC08

IPM Workshop on High Performance Computing (HPC08) IPM School of Physics Workshop on High Perfomance Computing/HPC08 IPM School of Physics Workshop on High Perfomance Computing/HPC08 16-21 February 2008 MPI tutorial Luca Heltai Stefano Cozzini Democritos/INFM + SISSA 1 When

More information

Review of MPI Part 2

Review of MPI Part 2 Review of MPI Part Russian-German School on High Performance Computer Systems, June, 7 th until July, 6 th 005, Novosibirsk 3. Day, 9 th of June, 005 HLRS, University of Stuttgart Slide Chap. 5 Virtual

More information

Message Passing Interface. most of the slides taken from Hanjun Kim

Message Passing Interface. most of the slides taken from Hanjun Kim Message Passing Interface most of the slides taken from Hanjun Kim Message Passing Pros Scalable, Flexible Cons Someone says it s more difficult than DSM MPI (Message Passing Interface) A standard message

More information

Slides prepared by : Farzana Rahman 1

Slides prepared by : Farzana Rahman 1 Introduction to MPI 1 Background on MPI MPI - Message Passing Interface Library standard defined by a committee of vendors, implementers, and parallel programmers Used to create parallel programs based

More information

Introduction to MPI. HY555 Parallel Systems and Grids Fall 2003

Introduction to MPI. HY555 Parallel Systems and Grids Fall 2003 Introduction to MPI HY555 Parallel Systems and Grids Fall 2003 Outline MPI layout Sending and receiving messages Collective communication Datatypes An example Compiling and running Typical layout of an

More information

Parallel Computing and the MPI environment

Parallel Computing and the MPI environment Parallel Computing and the MPI environment Claudio Chiaruttini Dipartimento di Matematica e Informatica Centro Interdipartimentale per le Scienze Computazionali (CISC) Università di Trieste http://www.dmi.units.it/~chiarutt/didattica/parallela

More information

Distributed Memory Programming with MPI

Distributed Memory Programming with MPI Distributed Memory Programming with MPI Moreno Marzolla Dip. di Informatica Scienza e Ingegneria (DISI) Università di Bologna moreno.marzolla@unibo.it Algoritmi Avanzati--modulo 2 2 Credits Peter Pacheco,

More information

Cornell Theory Center. Discussion: MPI Collective Communication I. Table of Contents. 1. Introduction

Cornell Theory Center. Discussion: MPI Collective Communication I. Table of Contents. 1. Introduction 1 of 18 11/1/2006 3:59 PM Cornell Theory Center Discussion: MPI Collective Communication I This is the in-depth discussion layer of a two-part module. For an explanation of the layers and how to navigate

More information

MA471. Lecture 5. Collective MPI Communication

MA471. Lecture 5. Collective MPI Communication MA471 Lecture 5 Collective MPI Communication Today: When all the processes want to send, receive or both Excellent website for MPI command syntax available at: http://www-unix.mcs.anl.gov/mpi/www/ 9/10/2003

More information

Message Passing Interface

Message Passing Interface MPSoC Architectures MPI Alberto Bosio, Associate Professor UM Microelectronic Departement bosio@lirmm.fr Message Passing Interface API for distributed-memory programming parallel code that runs across

More information

High Performance Computing

High Performance Computing High Performance Computing Course Notes 2009-2010 2010 Message Passing Programming II 1 Communications Point-to-point communications: involving exact two processes, one sender and one receiver For example,

More information

MPI 5. CSCI 4850/5850 High-Performance Computing Spring 2018

MPI 5. CSCI 4850/5850 High-Performance Computing Spring 2018 MPI 5 CSCI 4850/5850 High-Performance Computing Spring 2018 Tae-Hyuk (Ted) Ahn Department of Computer Science Program of Bioinformatics and Computational Biology Saint Louis University Learning Objectives

More information

MPI - The Message Passing Interface

MPI - The Message Passing Interface MPI - The Message Passing Interface The Message Passing Interface (MPI) was first standardized in 1994. De facto standard for distributed memory machines. All Top500 machines (http://www.top500.org) are

More information

Peter Pacheco. Chapter 3. Distributed Memory Programming with MPI. Copyright 2010, Elsevier Inc. All rights Reserved

Peter Pacheco. Chapter 3. Distributed Memory Programming with MPI. Copyright 2010, Elsevier Inc. All rights Reserved An Introduction to Parallel Programming Peter Pacheco Chapter 3 Distributed Memory Programming with MPI 1 Roadmap Writing your first MPI program. Using the common MPI functions. The Trapezoidal Rule in

More information

Programming Using the Message Passing Paradigm

Programming Using the Message Passing Paradigm Programming Using the Message Passing Paradigm Ananth Grama, Anshul Gupta, George Karypis, and Vipin Kumar To accompany the text ``Introduction to Parallel Computing'', Addison Wesley, 2003. Topic Overview

More information

Report S1 C. Kengo Nakajima. Programming for Parallel Computing ( ) Seminar on Advanced Computing ( )

Report S1 C. Kengo Nakajima. Programming for Parallel Computing ( ) Seminar on Advanced Computing ( ) Report S1 C Kengo Nakajima Programming for Parallel Computing (616-2057) Seminar on Advanced Computing (616-4009) Problem S1-1 Report S1 (1/2) Read local files /a1.0~a1.3, /a2.0~a2.3. Develop

More information

Distributed Memory Programming with MPI. Copyright 2010, Elsevier Inc. All rights Reserved

Distributed Memory Programming with MPI. Copyright 2010, Elsevier Inc. All rights Reserved An Introduction to Parallel Programming Peter Pacheco Chapter 3 Distributed Memory Programming with MPI 1 Roadmap Writing your first MPI program. Using the common MPI functions. The Trapezoidal Rule in

More information

PyConZA High Performance Computing with Python. Kevin Colville Python on large clusters with MPI

PyConZA High Performance Computing with Python. Kevin Colville Python on large clusters with MPI PyConZA 2012 High Performance Computing with Python Kevin Colville Python on large clusters with MPI Andy Rabagliati Python to read and store data on CHPC Petabyte data store www.chpc.ac.za High Performance

More information

Practical Scientific Computing: Performanceoptimized

Practical Scientific Computing: Performanceoptimized Practical Scientific Computing: Performanceoptimized Programming Programming with MPI November 29, 2006 Dr. Ralf-Peter Mundani Department of Computer Science Chair V Technische Universität München, Germany

More information

Report S1 C. Kengo Nakajima Information Technology Center. Technical & Scientific Computing II ( ) Seminar on Computer Science II ( )

Report S1 C. Kengo Nakajima Information Technology Center. Technical & Scientific Computing II ( ) Seminar on Computer Science II ( ) Report S1 C Kengo Nakajima Information Technology Center Technical & Scientific Computing II (4820-1028) Seminar on Computer Science II (4810-1205) Problem S1-3 Report S1 (2/2) Develop parallel program

More information

Parallel Programming in C with MPI and OpenMP

Parallel Programming in C with MPI and OpenMP Parallel Programming in C with MPI and OpenMP Michael J. Quinn Chapter 4 Message-Passing Programming Learning Objectives Understanding how MPI programs execute Familiarity with fundamental MPI functions

More information

Introduction to the Message Passing Interface (MPI)

Introduction to the Message Passing Interface (MPI) Introduction to the Message Passing Interface (MPI) CPS343 Parallel and High Performance Computing Spring 2018 CPS343 (Parallel and HPC) Introduction to the Message Passing Interface (MPI) Spring 2018

More information

CDP. MPI Derived Data Types and Collective Communication

CDP. MPI Derived Data Types and Collective Communication CDP MPI Derived Data Types and Collective Communication Why Derived Data Types? Elements in an MPI message are of the same type. Complex data, requires two separate messages. Bad example: typedef struct

More information

COMP 322: Fundamentals of Parallel Programming. Lecture 34: Introduction to the Message Passing Interface (MPI), contd

COMP 322: Fundamentals of Parallel Programming. Lecture 34: Introduction to the Message Passing Interface (MPI), contd COMP 322: Fundamentals of Parallel Programming Lecture 34: Introduction to the Message Passing Interface (MPI), contd Vivek Sarkar, Eric Allen Department of Computer Science, Rice University Contact email:

More information

Holland Computing Center Kickstart MPI Intro

Holland Computing Center Kickstart MPI Intro Holland Computing Center Kickstart 2016 MPI Intro Message Passing Interface (MPI) MPI is a specification for message passing library that is standardized by MPI Forum Multiple vendor-specific implementations:

More information

MPI Tutorial Part 1 Design of Parallel and High-Performance Computing Recitation Session

MPI Tutorial Part 1 Design of Parallel and High-Performance Computing Recitation Session S. DI GIROLAMO [DIGIROLS@INF.ETHZ.CH] MPI Tutorial Part 1 Design of Parallel and High-Performance Computing Recitation Session Slides credits: Pavan Balaji, Torsten Hoefler https://htor.inf.ethz.ch/teaching/mpi_tutorials/ppopp13/2013-02-24-ppopp-mpi-basic.pdf

More information

Chapter 3. Distributed Memory Programming with MPI

Chapter 3. Distributed Memory Programming with MPI An Introduction to Parallel Programming Peter Pacheco Chapter 3 Distributed Memory Programming with MPI 1 Roadmap n Writing your first MPI program. n Using the common MPI functions. n The Trapezoidal Rule

More information

Standard MPI - Message Passing Interface

Standard MPI - Message Passing Interface c Ewa Szynkiewicz, 2007 1 Standard MPI - Message Passing Interface The message-passing paradigm is one of the oldest and most widely used approaches for programming parallel machines, especially those

More information

MPI Tutorial Part 1 Design of Parallel and High-Performance Computing Recitation Session

MPI Tutorial Part 1 Design of Parallel and High-Performance Computing Recitation Session S. DI GIROLAMO [DIGIROLS@INF.ETHZ.CH] MPI Tutorial Part 1 Design of Parallel and High-Performance Computing Recitation Session Slides credits: Pavan Balaji, Torsten Hoefler https://htor.inf.ethz.ch/teaching/mpi_tutorials/ppopp13/2013-02-24-ppopp-mpi-basic.pdf

More information

More about MPI programming. More about MPI programming p. 1

More about MPI programming. More about MPI programming p. 1 More about MPI programming More about MPI programming p. 1 Some recaps (1) One way of categorizing parallel computers is by looking at the memory configuration: In shared-memory systems, the CPUs share

More information

Report S1 C. Kengo Nakajima

Report S1 C. Kengo Nakajima Report S1 C Kengo Nakajima Technical & Scientific Computing II (4820-1028) Seminar on Computer Science II (4810-1205) Hybrid Distributed Parallel Computing (3747-111) Problem S1-1 Report S1 Read local

More information

Experiencing Cluster Computing Message Passing Interface

Experiencing Cluster Computing Message Passing Interface Experiencing Cluster Computing Message Passing Interface Class 6 Message Passing Paradigm The Underlying Principle A parallel program consists of p processes with different address spaces. Communication

More information

Introduction to MPI. Shaohao Chen Research Computing Services Information Services and Technology Boston University

Introduction to MPI. Shaohao Chen Research Computing Services Information Services and Technology Boston University Introduction to MPI Shaohao Chen Research Computing Services Information Services and Technology Boston University Outline Brief overview on parallel computing and MPI Using MPI on BU SCC Basic MPI programming

More information

Part - II. Message Passing Interface. Dheeraj Bhardwaj

Part - II. Message Passing Interface. Dheeraj Bhardwaj Part - II Dheeraj Bhardwaj Department of Computer Science & Engineering Indian Institute of Technology, Delhi 110016 India http://www.cse.iitd.ac.in/~dheerajb 1 Outlines Basics of MPI How to compile and

More information

Chapter 4. Message-passing Model

Chapter 4. Message-passing Model Chapter 4 Message-Passing Programming Message-passing Model 2 1 Characteristics of Processes Number is specified at start-up time Remains constant throughout the execution of program All execute same program

More information

Outline. Introduction to HPC computing. OpenMP MPI. Introduction. Understanding communications. Collective communications. Communicators.

Outline. Introduction to HPC computing. OpenMP MPI. Introduction. Understanding communications. Collective communications. Communicators. Lecture 8 MPI Outline Introduction to HPC computing OpenMP MPI Introduction Understanding communications Collective communications Communicators Topologies Grouping Data for Communication Input / output

More information

Parallel Computing. Distributed memory model MPI. Leopold Grinberg T. J. Watson IBM Research Center, USA. Instructor: Leopold Grinberg

Parallel Computing. Distributed memory model MPI. Leopold Grinberg T. J. Watson IBM Research Center, USA. Instructor: Leopold Grinberg Parallel Computing Distributed memory model MPI Leopold Grinberg T. J. Watson IBM Research Center, USA Why do we need to compute in parallel large problem size - memory constraints computation on a single

More information

Collective Communications II

Collective Communications II Collective Communications II Ned Nedialkov McMaster University Canada SE/CS 4F03 January 2014 Outline Scatter Example: parallel A b Distributing a matrix Gather Serial A b Parallel A b Allocating memory

More information

CS 179: GPU Programming. Lecture 14: Inter-process Communication

CS 179: GPU Programming. Lecture 14: Inter-process Communication CS 179: GPU Programming Lecture 14: Inter-process Communication The Problem What if we want to use GPUs across a distributed system? GPU cluster, CSIRO Distributed System A collection of computers Each

More information

Agenda. MPI Application Example. Praktikum: Verteiltes Rechnen und Parallelprogrammierung Introduction to MPI. 1) Recap: MPI. 2) 2.

Agenda. MPI Application Example. Praktikum: Verteiltes Rechnen und Parallelprogrammierung Introduction to MPI. 1) Recap: MPI. 2) 2. Praktikum: Verteiltes Rechnen und Parallelprogrammierung Introduction to MPI Agenda 1) Recap: MPI 2) 2. Übungszettel 3) Projektpräferenzen? 4) Nächste Woche: 3. Übungszettel, Projektauswahl, Konzepte 5)

More information

In the simplest sense, parallel computing is the simultaneous use of multiple computing resources to solve a problem.

In the simplest sense, parallel computing is the simultaneous use of multiple computing resources to solve a problem. 1. Introduction to Parallel Processing In the simplest sense, parallel computing is the simultaneous use of multiple computing resources to solve a problem. a) Types of machines and computation. A conventional

More information

Intermediate MPI features

Intermediate MPI features Intermediate MPI features Advanced message passing Collective communication Topologies Group communication Forms of message passing (1) Communication modes: Standard: system decides whether message is

More information

The Message Passing Interface (MPI): Parallelism on Multiple (Possibly Heterogeneous) CPUs

The Message Passing Interface (MPI): Parallelism on Multiple (Possibly Heterogeneous) CPUs 1 The Message Passing Interface (MPI): Parallelism on Multiple (Possibly Heterogeneous) CPUs http://mpi-forum.org https://www.open-mpi.org/ Mike Bailey mjb@cs.oregonstate.edu Oregon State University mpi.pptx

More information

CEE 618 Scientific Parallel Computing (Lecture 5): Message-Passing Interface (MPI) advanced

CEE 618 Scientific Parallel Computing (Lecture 5): Message-Passing Interface (MPI) advanced 1 / 32 CEE 618 Scientific Parallel Computing (Lecture 5): Message-Passing Interface (MPI) advanced Albert S. Kim Department of Civil and Environmental Engineering University of Hawai i at Manoa 2540 Dole

More information

PCAP Assignment I. 1. A. Why is there a large performance gap between many-core GPUs and generalpurpose multicore CPUs. Discuss in detail.

PCAP Assignment I. 1. A. Why is there a large performance gap between many-core GPUs and generalpurpose multicore CPUs. Discuss in detail. PCAP Assignment I 1. A. Why is there a large performance gap between many-core GPUs and generalpurpose multicore CPUs. Discuss in detail. The multicore CPUs are designed to maximize the execution speed

More information

Message-Passing and MPI Programming

Message-Passing and MPI Programming Message-Passing and MPI Programming 2.1 Transfer Procedures Datatypes and Collectives N.M. Maclaren Computing Service nmm1@cam.ac.uk ext. 34761 July 2010 These are the procedures that actually transfer

More information

Intermediate MPI. M. D. Jones, Ph.D. Center for Computational Research University at Buffalo State University of New York

Intermediate MPI. M. D. Jones, Ph.D. Center for Computational Research University at Buffalo State University of New York Intermediate MPI M. D. Jones, Ph.D. Center for Computational Research University at Buffalo State University of New York High Performance Computing I, 2008 M. D. Jones, Ph.D. (CCR/UB) Intermediate MPI

More information

The Message Passing Interface (MPI) TMA4280 Introduction to Supercomputing

The Message Passing Interface (MPI) TMA4280 Introduction to Supercomputing The Message Passing Interface (MPI) TMA4280 Introduction to Supercomputing NTNU, IMF January 16. 2017 1 Parallelism Decompose the execution into several tasks according to the work to be done: Function/Task

More information

A User's Guide to MPI. Peter S. Pacheco. Department of Mathematics. University of San Francisco. San Francisco, CA

A User's Guide to MPI. Peter S. Pacheco. Department of Mathematics. University of San Francisco. San Francisco, CA A User's Guide to MPI Peter S. Pacheco Department of Mathematics University of San Francisco San Francisco, CA 94117 peter@usfca.edu March 26, 1995 Contents 1 Introduction 3 2 Greetings! 4 2.1 General

More information

Introduction to Parallel Programming

Introduction to Parallel Programming University of Nizhni Novgorod Faculty of Computational Mathematics & Cybernetics Section 4. Part 1. Introduction to Parallel Programming Parallel Programming with MPI Gergel V.P., Professor, D.Sc., Software

More information

Prof. Thomas Sterling Department of Computer Science Louisiana State University February 10, 2011

Prof. Thomas Sterling Department of Computer Science Louisiana State University February 10, 2011 Prof. Thomas Sterling Department of Computer Science Louisiana State University February 10, 2011 HIGH PERFORMANCE COMPUTING: MODELS, METHODS, & MEANS MESSAGE PASSING INTERFACE MPI (PART B) Topics MPI

More information

Message Passing Interface - MPI

Message Passing Interface - MPI Message Passing Interface - MPI Parallel and Distributed Computing Department of Computer Science and Engineering (DEI) Instituto Superior Técnico October 24, 2011 Many slides adapted from lectures by

More information

Parallel Computing. MPI Collective communication

Parallel Computing. MPI Collective communication Parallel Computing MPI Collective communication Thorsten Grahs, 18. May 2015 Table of contents Collective Communication Communicator Intercommunicator 18. May 2015 Thorsten Grahs Parallel Computing I SS

More information

PCAP Assignment II. 1. With a neat diagram, explain the various stages of fixed-function graphic pipeline.

PCAP Assignment II. 1. With a neat diagram, explain the various stages of fixed-function graphic pipeline. PCAP Assignment II 1. With a neat diagram, explain the various stages of fixed-function graphic pipeline. The host interface receives graphics commands and data from the CPU. The commands are typically

More information

CSE 160 Lecture 15. Message Passing

CSE 160 Lecture 15. Message Passing CSE 160 Lecture 15 Message Passing Announcements 2013 Scott B. Baden / CSE 160 / Fall 2013 2 Message passing Today s lecture The Message Passing Interface - MPI A first MPI Application The Trapezoidal

More information

Message Passing with MPI

Message Passing with MPI Message Passing with MPI PPCES 2016 Hristo Iliev IT Center / JARA-HPC IT Center der RWTH Aachen University Agenda Motivation Part 1 Concepts Point-to-point communication Non-blocking operations Part 2

More information

Lecture 7: More about MPI programming. Lecture 7: More about MPI programming p. 1

Lecture 7: More about MPI programming. Lecture 7: More about MPI programming p. 1 Lecture 7: More about MPI programming Lecture 7: More about MPI programming p. 1 Some recaps (1) One way of categorizing parallel computers is by looking at the memory configuration: In shared-memory systems

More information

CPS 303 High Performance Computing. Wensheng Shen Department of Computational Science SUNY Brockport

CPS 303 High Performance Computing. Wensheng Shen Department of Computational Science SUNY Brockport CPS 303 High Perormance Computing Wensheng Shen Department o Computational Science SUNY Brockport Chapter 4 An application: numerical integration Use MPI to solve a problem o numerical integration with

More information

4. Parallel Programming with MPI

4. Parallel Programming with MPI 4. Parallel Programming with MPI 4. Parallel Programming with MPI... 4.. MPI: Basic Concepts and Definitions...3 4... The Concept of Parallel Program...3 4..2. Data Communication Operations...3 4..3. Communicators...3

More information

CS 470 Spring Mike Lam, Professor. Distributed Programming & MPI

CS 470 Spring Mike Lam, Professor. Distributed Programming & MPI CS 470 Spring 2019 Mike Lam, Professor Distributed Programming & MPI MPI paradigm Single program, multiple data (SPMD) One program, multiple processes (ranks) Processes communicate via messages An MPI

More information

The MPI Message-passing Standard Practical use and implementation (VI) SPD Course 08/03/2017 Massimo Coppola

The MPI Message-passing Standard Practical use and implementation (VI) SPD Course 08/03/2017 Massimo Coppola The MPI Message-passing Standard Practical use and implementation (VI) SPD Course 08/03/2017 Massimo Coppola Datatypes REFINING DERIVED DATATYPES LAYOUT FOR COMPOSITION SPD - MPI Standard Use and Implementation

More information

The Message Passing Model

The Message Passing Model Introduction to MPI The Message Passing Model Applications that do not share a global address space need a Message Passing Framework. An application passes messages among processes in order to perform

More information

Praktikum: Verteiltes Rechnen und Parallelprogrammierung Introduction to MPI

Praktikum: Verteiltes Rechnen und Parallelprogrammierung Introduction to MPI Praktikum: Verteiltes Rechnen und Parallelprogrammierung Introduction to MPI Agenda 1) MPI für Java Installation OK? 2) 2. Übungszettel Grundidee klar? 3) Projektpräferenzen? 4) Nächste Woche: 3. Übungszettel,

More information

Assignment 3 Key CSCI 351 PARALLEL PROGRAMMING FALL, Q1. Calculate log n, log n and log n for the following: Answer: Q2. mpi_trap_tree.

Assignment 3 Key CSCI 351 PARALLEL PROGRAMMING FALL, Q1. Calculate log n, log n and log n for the following: Answer: Q2. mpi_trap_tree. CSCI 351 PARALLEL PROGRAMMING FALL, 2015 Assignment 3 Key Q1. Calculate log n, log n and log n for the following: a. n=3 b. n=13 c. n=32 d. n=123 e. n=321 Answer: Q2. mpi_trap_tree.c The mpi_trap_time.c

More information

Distributed Memory Programming with MPI

Distributed Memory Programming with MPI Distributed Memory Programming with MPI Part 1 Bryan Mills, PhD Spring 2017 A distributed memory system A shared memory system Identifying MPI processes n Common pracace to idenafy processes by nonnegaave

More information