Skip to content

Commit

Permalink
Merge pull request #28 from ezrannetttty/main
Browse files Browse the repository at this point in the history
Fixed an error and a typo.
  • Loading branch information
fverdugo authored Oct 2, 2023
2 parents 26afa1d + 557b342 commit f820a72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion notebooks/matrix_matrix.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@
" iw += 1\n",
" w = workers()[iw]\n",
" ftr = @spawnat w begin\n",
" Ci = fill(z,l)\n",
" Ci = fill(z,n)\n",
" for j in 1:n\n",
" for k in 1:l\n",
" @inbounds Ci[j] += Ai[k]*B[k,j]\n",
Expand Down
2 changes: 1 addition & 1 deletion notebooks/mpi_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
"\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",
"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",
Expand Down

0 comments on commit f820a72

Please sign in to comment.