From 94031245faca58df3a5b101d11c3c0ba742d314a Mon Sep 17 00:00:00 2001 From: Jeremy Edward Kozdon Date: Thu, 14 Apr 2016 13:27:20 -0700 Subject: [PATCH] Updating README --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 976af43d4..6d0c320dd 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,11 @@ Julia Function (assuming `import MPI`) | Fortran Function `MPI.Finalized` | [`MPI_Finalized`](https://www.open-mpi.org/doc/v1.10/man3/MPI_Finalized.3.php) `MPI.Init` | [`MPI_Init`](https://www.open-mpi.org/doc/v1.10/man3/MPI_Init.3.php) `MPI.Initialized` | [`MPI_Initialized`](https://www.open-mpi.org/doc/v1.10/man3/MPI_Initialized.3.php) + `MPI.mpitype` | [`MPI_Type_create_struct`](https://www.open-mpi.org/doc/v1.10/man3/MPI_Type_create_struct.3.php) and [`MPI_Type_commit`](https://www.open-mpi.org/doc/v1.10/man3/MPI_Type_commit.3.php) (see: [mpitype note](#mpitypenote)) + +mpitype note: This is not strictly a wrapper for +`MPI_Type_create_struct` and `MPI_Type_commit`, it also is an accessor for +previously created types. #### Point-to-point communication Julia Function (assuming `import MPI`) | Fortran Function @@ -236,6 +241,7 @@ Julia Function (assuming `import MPI`) | Fortran Function `MPI.Scatterv` | [`MPI_Scatterv`](https://www.open-mpi.org/doc/v1.10/man3/MPI_Scatterv.3.php) + [Julia]: http://julialang.org/ [MPI]: http://www.mpi-forum.org/ [mpi4py]: http://mpi4py.scipy.org