Skip to content

Commit

Permalink
Fonctions et méthodes du chapitre 2
Browse files Browse the repository at this point in the history
  • Loading branch information
plstonge committed May 16, 2024
1 parent 43d71bd commit 7930f09
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions 99-references.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@
"id": "38d9d62d-def9-4a75-850f-2f82099ebf2d",
"metadata": {},
"source": [
" Concept | C/Fortran | Python\n",
" Concept | C/Fortran | Python ([`mpi4py`](https://mpi4py.readthedocs.io/en/latest/index.html))\n",
":-------:|:----------|:-------\n",
"Initialisation | [`MPI_Init()`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#subsection.11.2.1) | [`MPI.Init`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Init.html#mpi4py.MPI.Init)\n",
"Finalisation | [`MPI_Finalize()`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#subsection.11.2.2) | [`MPI.Finalize`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Finalize.html#mpi4py.MPI.Finalize)\n",
"Avortement | [`MPI_Abort()`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#subsection.11.4.2) | S.O."
"Avortement | [`MPI_Abort()`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#subsection.11.4.2) | `sys.exit(None)`\n",
"Communicateur | [`MPI_COMM_WORLD`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#section.11.2) | [`MPI.COMM_WORLD`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.COMM_WORLD.html)\n",
"Rang | [`MPI_Comm_rank`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#page=362) | [`MPI.Comm.Get_rank`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.Get_rank)\n",
"Nombre de processus | [`MPI_Comm_size`](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#subsection.7.4.1) | [`MPI.Comm.Get_size`](https://mpi4py.readthedocs.io/en/latest/reference/mpi4py.MPI.Comm.html#mpi4py.MPI.Comm.Get_size)\n",
"Types de données | [`MPI_CHAR`, ...](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report.pdf#page=76) | [Sérialisation](https://fr.wikipedia.org/wiki/S%C3%A9rialisation) automatique"
]
},
{
Expand Down

0 comments on commit 7930f09

Please sign in to comment.