-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_mpi.h
84 lines (66 loc) · 1.18 KB
/
my_mpi.h
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#ifndef __MY_MPI_H__
#define __MY_MPI_H__
#ifndef MPI_Comm_World
#define MPI_Comm_World 0
#endif
#ifndef MPI_COMM_WORLD
#define MPI_COMM_WORLD 0
#endif
#ifndef MPI_SUCCESS
#define MPI_SUCCESS 0
#endif
#ifndef MPI_ERR_COMM
#define MPI_ERR_COMM 1
#endif
#ifndef MPI_ANY_TAG
#define MPI_ANY_TAG 0
#endif
#ifndef MPI_STATUS_IGNORE
#define MPI_STATUS_IGNORE 0
#endif
#ifndef MPI_CHAR
#define MPI_CHAR 0
#endif
#define MPI_ACK 1
#define MPI_NACK 2
#define ALL_GOOD 42
#define SHIT_ITS_NOT_ALL_GOOD 37
typedef int MPI_Comm;
typedef enum {
VALID,
INVALID
} STATE;
typedef struct
{
int nodes;
int rootPort;
char * rootHost;
} envData;
typedef struct
{
int rank;
char * hostname;
int port;
int fp;
} node;
typedef struct
{
int node;
int port;
char * hostname;
int socketFd;
} data;
typedef struct
{
int type;
char hostname[256];
int node, port;
} mpiInitMsg;
void MPI_Init(int*, char***);
int MPI_Barrier(MPI_Comm);
int MPI_Finalize(void);
int MPI_Comm_rank(MPI_Comm, int*);
int MPI_Comm_size(MPI_Comm, int*);
void MPI_Send(void*, int, int, int, int, int);
void MPI_Recv(void*, int, int, int, int, int, int);
#endif /* __MY_MPI_H__ */