Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use zero-copy send-recv in FG-MPI #83

Closed
jeffhammond opened this issue Feb 22, 2016 · 0 comments
Closed

use zero-copy send-recv in FG-MPI #83

jeffhammond opened this issue Feb 22, 2016 · 0 comments
Labels

Comments

@jeffhammond
Copy link
Member

FG-MPI provides zero-copy send-recv, which we can/should use within a node.

This might require some changes to memory allocation, especially in transpose, but I need to think about this more.

int MPIX_Zsend(const void **, int, MPI_Datatype, int, int, MPI_Comm);
int MPIX_Izsend(const void **, int, MPI_Datatype, int, int, MPI_Comm, MPI_Request *);
int MPIX_Zrecv(void **, int, MPI_Datatype, int, int, MPI_Comm, MPI_Status *);
int MPIX_Izrecv(void **, int, MPI_Datatype, int, int, MPI_Comm, MPI_Request *);

Particularly since I am working on ownership-passing as a feature for MPI-4 (mpi-forum/mpi-issues#32), it would be good to show the value of this using the PRK.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant