X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0445b0862c323d8285fba620d5137a0891527914..dd3f7131fa6fb84ae9a070c8574ad1f3c0e1611d:/src/smpi/private.h diff --git a/src/smpi/private.h b/src/smpi/private.h index d8b00f08bb..8e9ce16fdf 100644 --- a/src/smpi/private.h +++ b/src/smpi/private.h @@ -14,7 +14,6 @@ #include "simgrid/simix.h" #include "smpi/smpi_interface.h" #include "smpi/smpi.h" -#include "smpi/smpif.h" #include "smpi/smpi_cocci.h" #include "instr/instr_private.h" @@ -30,6 +29,8 @@ typedef struct s_smpi_process_data *smpi_process_data_t; #define SSEND 0x40 #define PREPARED 0x80 #define FINISHED 0x100 +#define RMA 0x200 +#define ACCUMULATE 0x400 enum smpi_process_state{ @@ -42,12 +43,13 @@ enum smpi_process_state{ // for each such structure these function should be implemented (vector // index hvector hindex struct) typedef struct s_smpi_subtype{ - void (*serialize)(const void * input, void *output, size_t count, void* subtype); - void (*unserialize)(const void * input, void *output, size_t count, void* subtype); + void (*serialize)(const void * input, void *output, int count, void* subtype); + void (*unserialize)(const void * input, void *output, int count, void* subtype, MPI_Op op); void (*subtype_free)(MPI_Datatype* type); } s_smpi_subtype_t; typedef struct s_smpi_mpi_datatype{ + char* name; size_t size; /* this let us know if a serialization is required*/ size_t has_subtype; @@ -102,31 +104,48 @@ typedef struct s_smpi_mpi_request { int detached; MPI_Request detached_sender; int refcount; + MPI_Op op; #ifdef HAVE_TRACING int send; int recv; #endif } s_smpi_mpi_request_t; + void smpi_process_destroy(void); void smpi_process_finalize(void); int smpi_process_finalized(void); int smpi_process_initialized(void); void smpi_process_mark_as_initialized(void); +struct s_smpi_mpi_cart_topology; +typedef struct s_smpi_mpi_cart_topology *MPIR_Cart_Topology; + +struct s_smpi_mpi_graph_topology; +typedef struct s_smpi_mpi_graph_topology *MPIR_Graph_Topology; + +struct s_smpi_dist_graph_topology; +typedef struct s_smpi_dist_graph_topology *MPIR_Dist_Graph_Topology; + +// MPI_Topology defined in smpi.h, as it is public + void smpi_topo_destroy(MPI_Topology topo); -MPI_Topology smpi_topo_create(int ndims); +MPI_Topology smpi_topo_create(MPIR_Topo_type kind); +void smpi_cart_topo_destroy(MPIR_Cart_Topology cart); +MPI_Topology smpi_cart_topo_create(int ndims); int smpi_mpi_cart_create(MPI_Comm comm_old, int ndims, int dims[], - int periodic[], int reorder, MPI_Comm *comm_cart); -int smpi_mpi_cart_shift(MPI_Comm comm, int direction, int disp, - int *rank_source, int *rank_dest); -int smpi_mpi_cart_rank(MPI_Comm comm, int* coords, int* rank); -int smpi_mpi_cart_get(MPI_Comm comm, int maxdims, int* dims, int* periods, int* coords); + int periods[], int reorder, MPI_Comm *comm_cart); +int smpi_mpi_cart_sub(MPI_Comm comm, const int remain_dims[], MPI_Comm *newcomm); int smpi_mpi_cart_coords(MPI_Comm comm, int rank, int maxdims, int coords[]); +int smpi_mpi_cart_get(MPI_Comm comm, int maxdims, int* dims, int* periods, + int* coords); +int smpi_mpi_cart_rank(MPI_Comm comm, int* coords, int* rank); +int smpi_mpi_cart_shift(MPI_Comm comm, int direction, int disp, + int *rank_source, int *rank_dest); int smpi_mpi_cartdim_get(MPI_Comm comm, int *ndims); int smpi_mpi_dims_create(int nnodes, int ndims, int dims[]); -int smpi_mpi_cart_sub(MPI_Comm comm, const int remain_dims[], MPI_Comm *newcomm); + smpi_process_data_t smpi_process_data(void); smpi_process_data_t smpi_process_remote_data(int index); @@ -152,15 +171,22 @@ void smpi_comm_copy_buffer_callback(smx_action_t comm, void print_request(const char *message, MPI_Request request); +int smpi_enabled(void); void smpi_global_init(void); void smpi_global_destroy(void); +double smpi_mpi_wtime(void); + +int is_datatype_valid(MPI_Datatype datatype); size_t smpi_datatype_size(MPI_Datatype datatype); MPI_Aint smpi_datatype_lb(MPI_Datatype datatype); MPI_Aint smpi_datatype_ub(MPI_Datatype datatype); +MPI_Datatype smpi_datatype_dup(MPI_Datatype datatype); int smpi_datatype_extent(MPI_Datatype datatype, MPI_Aint * lb, MPI_Aint * extent); MPI_Aint smpi_datatype_get_extent(MPI_Datatype datatype); +void smpi_datatype_get_name(MPI_Datatype datatype, char* name, int* length); +void smpi_datatype_set_name(MPI_Datatype datatype, char* name); int smpi_datatype_copy(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype); @@ -237,6 +263,10 @@ MPI_Request smpi_irecv_init(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm); MPI_Request smpi_mpi_irecv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm); +MPI_Request smpi_rma_send_init(void *buf, int count, MPI_Datatype datatype, + int src, int dst, int tag, MPI_Comm comm, MPI_Op op); +MPI_Request smpi_rma_recv_init(void *buf, int count, MPI_Datatype datatype, + int src, int dst, int tag, MPI_Comm comm, MPI_Op op); void smpi_mpi_recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Status * status); void smpi_mpi_send(void *buf, int count, MPI_Datatype datatype, int dst, @@ -300,6 +330,19 @@ void smpi_mpi_scan(void *sendbuf, void *recvbuf, int count, void smpi_mpi_exscan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm); +int smpi_mpi_win_free( MPI_Win* win); + +MPI_Win smpi_mpi_win_create( void *base, MPI_Aint size, int disp_unit, MPI_Info info, MPI_Comm comm); + +int smpi_mpi_win_fence( int assert, MPI_Win win); + +int smpi_mpi_get( void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank, + MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win); +int smpi_mpi_put( void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank, + MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win); +int smpi_mpi_accumulate( void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank, + MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win); + void nary_tree_bcast(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm, int arity); void nary_tree_barrier(MPI_Comm comm, int arity); @@ -434,6 +477,10 @@ void mpi_info_set_( int *info, char *key, char *value, int* ierr); void mpi_info_free_(int* info, int* ierr); void mpi_get_( int *origin_addr, int* origin_count, int* origin_datatype, int* target_rank, MPI_Aint* target_disp, int* target_count, int* target_datatype, int* win, int* ierr); +void mpi_put_( int *origin_addr, int* origin_count, int* origin_datatype, int* target_rank, + MPI_Aint* target_disp, int* target_count, int* target_datatype, int* win, int* ierr); +void mpi_accumulate_( int *origin_addr, int* origin_count, int* origin_datatype, int* target_rank, + MPI_Aint* target_disp, int* target_count, int* target_datatype, int* op, int* win, int* ierr); void mpi_error_string_(int* errorcode, char* string, int* resultlen, int* ierr); void mpi_sendrecv_(void* sendbuf, int* sendcount, int* sendtype, int* dst, int* sendtag, void *recvbuf, int* recvcount,