Skip to content

Commit

Permalink
Fonctions et méthodes du chapitre 4
Browse files Browse the repository at this point in the history
  • Loading branch information
plstonge committed May 16, 2024
1 parent c6679fe commit 6a922d8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions 99-references.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,23 @@
"Attendre la communication | [`MPI_Wait`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#subsection.3.7.3) | [`MPI.Request.wait`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Request.html#mpi4py.MPI.Request.wait)"
]
},
{
"cell_type": "markdown",
"id": "33bb7398-4ea4-49e6-92d0-64e68aa9f0a1",
"metadata": {},
"source": [
" Concept | C/Fortran | Python ([`mpi4py`](https://mpi4py.readthedocs.io/en/latest/index.html))\n",
":-------:|:----------|:-------\n",
"Diffusion | [`MPI_Bcast`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#section.6.4) | [`MPI.Comm.bcast`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.bcast)\n",
"Distribution | [`MPI_Scatter`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#section.6.6) | [`MPI.Comm.scatter`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.scatter)\n",
"Regroupement | [`MPI_Gather`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#section.6.5) | [`MPI.Comm.gather`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.gather)\n",
"Regroupement à tous | [`MPI_Allgather`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#section.6.7) | [`MPI.Comm.allgather`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.allgather)\n",
"Transposition globale | [`MPI_Alltoall`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#section.6.8) | [`MPI.Comm.alltoall`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.alltoall)\n",
"| |\n",
"Réduction | [`MPI_Reduce`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#subsection.6.9.1) | [`MPI.Comm.reduce`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.reduce)\n",
"Réduction et diffusion | [`MPI_Allreduce`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#subsection.6.9.6) | [`MPI.Comm.allreduce`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.allreduce)"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down

0 comments on commit 6a922d8

Please sign in to comment.