1
1
openmpi/src/include/mpi.h

26 строки
462 B
C
Исходник Обычный вид История

2003-11-22 19:36:58 +03:00
/*
* $HEADER$
2003-11-22 19:36:58 +03:00
*/
#ifndef LAM_MPI_H
#define LAM_MPI_H
2003-11-22 19:36:58 +03:00
#define MPI_SUCCESS 0
#define MPI_MAX_OBJECT_NAME 64
2003-11-22 19:36:58 +03:00
#define LAM_MPI 1
typedef struct _lam_communicator *MPI_Comm;
typedef struct _lam_group *MPI_Group;
typedef struct _lam_datatype *MPI_Datatype;
2003-11-22 19:36:58 +03:00
extern MPI_Comm MPI_COMM_NULL;
extern MPI_Comm MPI_COMM_WORLD;
extern MPI_Comm MPI_COMM_SELF;
extern MPI_Datatype MPI_TYPE_NULL;
int MPI_Comm_set_name(MPI_Comm comm, char *name);
2003-11-22 19:36:58 +03:00
#endif /* LAM_MPI_H */