You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Weird behavior, the first time I ran the passive RMA example, I got out:
> mpiexec -n 4 julia --project passive_rma.jl
After Put with lock / unlock, window content on rank 0:
all_ranks = [0, -1, -1, -1]
All subsequent runs gave the desired:
> mpiexec -n 4 julia --project passive_rma.jl
After Put with lock / unlock, window content on rank 0:
all_ranks = [0, 1, 2, 3]
The subsequent runs were started immediately so there were no changes to the code or environment. I tried to reproduce the behavior by deleting recent files in .julia/compiled/v1.9/MPI, but that did not reproduce the effect. I wonder if there should be another MPI.Win_fence(0, win) after creation of win?
Weird behavior, the first time I ran the passive RMA example, I got out:
All subsequent runs gave the desired:
The subsequent runs were started immediately so there were no changes to the code or environment. I tried to reproduce the behavior by deleting recent files in .julia/compiled/v1.9/MPI, but that did not reproduce the effect. I wonder if there should be another MPI.Win_fence(0, win) after creation of win?
The text was updated successfully, but these errors were encountered: