![]() |
.. (לתיקייה המכילה) | |
I get an error trying to install mpi4py. What should I do? | |
Make sure you asked for a bash shell as instructed in the server tutorial: srun -p 236370 -c1 --pty bash pip3 install --user mpi4py exit |
How do I use status with asynchronous communication? | |
This was mentioned in the tutorials. request.Wait, request.Test and request.Probe can take a status object and update it. For example: status = MPI.Status() request.Wait(status) print("got message from", status.source) |