build based on 8b9029c

This commit is contained in:
Documenter.jl
2025-09-24 05:38:05 +00:00
parent d71de31d77
commit c88a265718
24 changed files with 30 additions and 26 deletions

View File

@@ -771,9 +771,11 @@
" rank = MPI.Comm_rank(comm)\n",
" if rank == 2\n",
" sndbuf = [2]\n",
" MPI.Send(sndbuf, comm2; dest=3, tag=0)\n",
" req1 = MPI.Isend(sndbuf, comm2; dest=3, tag=0)\n",
" sndbuf = [1]\n",
" MPI.Send(sndbuf, comm; dest=3, tag=0)\n",
" req2 = MPI.Isend(sndbuf, comm; dest=3, tag=0)\n",
" MPI.Wait(req2)\n",
" MPI.Wait(req1)\n",
" end\n",
" if rank == 3\n",
" rcvbuf = zeros(Int,1)\n",