We can in fact use mpirun to run distributed jobs on our CSE cluster.
In our CS Cluster, the openmpi is installed in /usr/local/software/openmpi-1.8.4/ and the default parallel environment is impl. We can thus use qsub -pe impl 4 to submit mpi jobs. Also, we can use qconf -sp impl to check the detailed configuration of impl.
In addition, we can monitor the network usage using others tools like ifstat, which can be executed in parallel with our main process.
[ ] Use MPI in the future
[ ] Monitoring the network usage statistics using other tools like ifstat
We can in fact use
mpirun
to run distributed jobs on our CSE cluster.In our CS Cluster, the openmpi is installed in
/usr/local/software/openmpi-1.8.4/
and the default parallel environment isimpl
. We can thus useqsub -pe impl 4
to submit mpi jobs. Also, we can useqconf -sp impl
to check the detailed configuration ofimpl
.In addition, we can monitor the network usage using others tools like
ifstat
, which can be executed in parallel with our main process.