Skip to content

Commit

Permalink
Chap 3 - Uniformiser les point-virgules ou non
Browse files Browse the repository at this point in the history
  • Loading branch information
plstonge committed May 10, 2024
1 parent 4a1a82d commit 2626150
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions 3-point-a-point.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"\n",
"```C\n",
"int MPI_Send(void *envoi, int compte, MPI_Datatype type,\n",
" int dest, int etiquette, MPI_Comm comm);\n",
" int dest, int etiquette, MPI_Comm comm)\n",
"```\n",
"\n",
"* `envoi` : adresse en mémoire du premier élément à envoyer\n",
Expand Down Expand Up @@ -64,7 +64,7 @@
"```C\n",
"int MPI_Recv(void *recept, int compte, MPI_Datatype type,\n",
" int source, int etiquette, MPI_Comm comm,\n",
" MPI_Status *etat);\n",
" MPI_Status *etat)\n",
"```\n",
"\n",
"* `recept` : adresse en mémoire du premier élément à recevoir\n",
Expand Down Expand Up @@ -261,6 +261,7 @@
"}\n",
"\n",
"MPI_Wait(&requete, &etat);\n",
"\n",
"```"
]
},
Expand Down Expand Up @@ -295,11 +296,11 @@
"```C\n",
"int MPI_Isend(void *envoi, int compte, MPI_Datatype type,\n",
" int dest, int etiquette, MPI_Comm comm,\n",
" MPI_Request *requete);\n",
" MPI_Request *requete)\n",
"\n",
"int MPI_Irecv(void *recept, int compte, MPI_Datatype type,\n",
" int source, int etiquette, MPI_Comm comm,\n",
" MPI_Request *requete);\n",
" MPI_Request *requete)\n",
"```\n",
"\n",
"* Il n'est pas nécessaire que l'envoi et la réception\n",
Expand All @@ -316,7 +317,7 @@
"metadata": {},
"source": [
"```C\n",
"int MPI_Wait(MPI_Request *requete, MPI_Status *etat);\n",
"int MPI_Wait(MPI_Request *requete, MPI_Status *etat)\n",
"```\n",
"\n",
"* `MPI_Wait` est bloquante.\n",
Expand Down

0 comments on commit 2626150

Please sign in to comment.