1
1
This commit was SVN r26942.
Этот коммит содержится в:
Ralph Castain 2012-08-02 16:58:04 +00:00
родитель 8b595ddf84
Коммит bf701f6c55

Просмотреть файл

@ -1689,11 +1689,11 @@ OMPI_DECLSPEC int PMPI_Bsend_init(void *buf, int count, MPI_Datatype datatype,
OMPI_DECLSPEC int PMPI_Buffer_attach(void *buffer, int size);
OMPI_DECLSPEC int PMPI_Buffer_detach(void *buffer, int *size);
OMPI_DECLSPEC int PMPI_Cancel(MPI_Request *request);
OMPI_DECLSPEC int PMPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int *coords);
OMPI_DECLSPEC int PMPI_Cart_coords(MPI_Comm comm, int rank, int maxdims, int coords[]);
OMPI_DECLSPEC int PMPI_Cart_create(MPI_Comm old_comm, int ndims, int *dims,
int *periods, int reorder, MPI_Comm *comm_cart);
OMPI_DECLSPEC int PMPI_Cart_get(MPI_Comm comm, int maxdims, int *dims,
int *periods, int *coords);
int periods[], int reorder, MPI_Comm *comm_cart);
OMPI_DECLSPEC int PMPI_Cart_get(MPI_Comm comm, int maxdims, int dims[],
int periods[], int *coords);
OMPI_DECLSPEC int PMPI_Cart_map(MPI_Comm comm, int ndims, int *dims,
int *periods, int *newrank);
OMPI_DECLSPEC int PMPI_Cart_rank(MPI_Comm comm, int *coords, int *rank);
@ -1881,12 +1881,12 @@ OMPI_DECLSPEC int PMPI_Get_version(int *version, int *subversion);
OMPI_DECLSPEC int PMPI_Graph_create(MPI_Comm comm_old, int nnodes, int *index,
int *edges, int reorder, MPI_Comm *comm_graph);
OMPI_DECLSPEC int PMPI_Graph_get(MPI_Comm comm, int maxindex, int maxedges,
int *index, int *edges);
int index[], int edges[]);
OMPI_DECLSPEC int PMPI_Graph_map(MPI_Comm comm, int nnodes, int *index, int *edges,
int *newrank);
OMPI_DECLSPEC int PMPI_Graph_neighbors_count(MPI_Comm comm, int rank, int *nneighbors);
OMPI_DECLSPEC int PMPI_Graph_neighbors(MPI_Comm comm, int rank, int maxneighbors,
int *neighbors);
int neighbors[]);
OMPI_DECLSPEC int PMPI_Graphdims_get(MPI_Comm comm, int *nnodes, int *nedges);
OMPI_DECLSPEC int PMPI_Grequest_complete(MPI_Request request);
OMPI_DECLSPEC int PMPI_Grequest_start(MPI_Grequest_query_function *query_fn,
@ -1897,11 +1897,11 @@ OMPI_DECLSPEC MPI_Fint PMPI_Group_c2f(MPI_Group group);
OMPI_DECLSPEC int PMPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result);
OMPI_DECLSPEC int PMPI_Group_difference(MPI_Group group1, MPI_Group group2,
MPI_Group *newgroup);
OMPI_DECLSPEC int PMPI_Group_excl(MPI_Group group, int n, int *ranks,
OMPI_DECLSPEC int PMPI_Group_excl(MPI_Group group, int n, int ranks[],
MPI_Group *newgroup);
OMPI_DECLSPEC MPI_Group PMPI_Group_f2c(MPI_Fint group);
OMPI_DECLSPEC int PMPI_Group_free(MPI_Group *group);
OMPI_DECLSPEC int PMPI_Group_incl(MPI_Group group, int n, int *ranks,
OMPI_DECLSPEC int PMPI_Group_incl(MPI_Group group, int n, int ranks[],
MPI_Group *newgroup);
OMPI_DECLSPEC int PMPI_Group_intersection(MPI_Group group1, MPI_Group group2,
MPI_Group *newgroup);
@ -1911,8 +1911,8 @@ OMPI_DECLSPEC int PMPI_Group_range_incl(MPI_Group group, int n, int ranges[][3]
MPI_Group *newgroup);
OMPI_DECLSPEC int PMPI_Group_rank(MPI_Group group, int *rank);
OMPI_DECLSPEC int PMPI_Group_size(MPI_Group group, int *size);
OMPI_DECLSPEC int PMPI_Group_translate_ranks(MPI_Group group1, int n, int *ranks1,
MPI_Group group2, int *ranks2);
OMPI_DECLSPEC int PMPI_Group_translate_ranks(MPI_Group group1, int n, int ranks1[],
MPI_Group group2, int ranks2[]);
OMPI_DECLSPEC int PMPI_Group_union(MPI_Group group1, MPI_Group group2,
MPI_Group *newgroup);
OMPI_DECLSPEC int PMPI_Ibsend(void *buf, int count, MPI_Datatype datatype, int dest,