...
NCI-data-analysis module enables executing Rmpi scripts across multiple worker nodes at Gadi. The current verision version of Rmpi in NCI-data-analysis/222022.06 module is v0.6-9.2.
Gadi
...
#!/bin/bash |
Note: you should always specify "-np 1" in the above script and Rmpi will use it as the master process and then you can which will spawn "MPI_COMM_SIZE-1" child processes.
...
You can also run the above example script directly from a command line within a ARE JupyterLab session as below:
mpirun -np 1 Rscript Rmpi_test.R >& output.log |
...