i am running a simple test script using mpi, where the script says:
if processIsMaster():
print "master"
else:
print "slave"
I set it up for 4 nodes of 8 processors each, and after running it printed master 32 times .. what does it mean?
I ran as below:
module load intel
module load pmpi/intel
mpirun -np 32 $ATK_BIN_DIR/atkpython $SRC_DIR/$SCRIPT1 ..otherstuff..