-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.cpp
66 lines (54 loc) · 1.32 KB
/
single.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// thread.cpp
// It runs one sender and one receiver but they are multithreaded, with MPI and openmp.
#include <mpi.h>
#include <omp.h>
#include <iostream>
#include <chrono>
#include <string>
#include <vector>
#include "timer.h"
using namespace std;
const double M=1000000;
int len=1073741824;
int *buf=NULL;
int main(int argc, char *argv[]){
int rank, size;
int num_thread=-1;
char hostname[20];
int name_len;
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &size);
if(size!=2){
cout << "# of processes is not 2\n";
MPI_Abort(MPI_COMM_WORLD, -1);
}
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
// Every process spawns two threads.
// Thread 0 sends.
// Thread 1 receives.
buf=new int[len];
if(len%num_thread!=0){
cout << "Buffer size cannot be divided\n";
return -1;
}
MPI_Status recv_stat;
MPI_Request recv_req;
Timer t;
MPI_Barrier(MPI_COMM_WORLD);
t.start();
if(rank==0){
// Send.
MPI_Send(buf, len, MPI_INT, 1, 0, MPI_COMM_WORLD);
}
else{
// Receive.
MPI_Recv(buf, len, MPI_INT, 0, 0, MPI_COMM_WORLD, &recv_stat);
}
MPI_Barrier(MPI_COMM_WORLD);
if(rank==0){
cout << t.seconds() << endl;
}
delete[] buf;
MPI_Finalize();
return 0;
}