Missing ! after MPI.Recv

This commit is contained in:
ezrannetttty 2023-10-01 03:46:04 +08:00 committed by GitHub
parent e1c4a9e1a0
commit 557b342f63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -629,7 +629,7 @@
"MPI also provides point-to-point communication directives for arbitrary communication between processes. Point-to-point communications are two-sided: there is a sender and a receiver. Here, we will discuss these basic directives:\n", "MPI also provides point-to-point communication directives for arbitrary communication between processes. Point-to-point communications are two-sided: there is a sender and a receiver. Here, we will discuss these basic directives:\n",
"\n", "\n",
"- `MPI.Isend`, and `MPI.Irecv!` (*non-blocking directives*)\n", "- `MPI.Isend`, and `MPI.Irecv!` (*non-blocking directives*)\n",
"- `MPI.Send`, and `MPI.Recv` (*blocking directives*)\n", "- `MPI.Send`, and `MPI.Recv!` (*blocking directives*)\n",
"\n", "\n",
"\n", "\n",
"Non-blocking directives return immediately and return an `MPI.Request` object. This request object can be queried with functions like `MPI.Wait`. It is mandatory to wait on the request object before reading the receive buffer, or before writing again on the send buffer.\n", "Non-blocking directives return immediately and return an `MPI.Request` object. This request object can be queried with functions like `MPI.Wait`. It is mandatory to wait on the request object before reading the receive buffer, or before writing again on the send buffer.\n",