Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
doku:tight_integration [2014/05/28 11:27] – created irdoku:tight_integration [2021/05/13 17:48] (current) – removed goldenberg
Line 1: Line 1:
-===== Tight integration ===== 
- 
-Some MPI implementations have a tight integration to SGE. In this case, providing a machinefile could/will be ignored by mpirun.  
-For disabling this behaviour one can  
- 
- 
-  * unset the variable PE_HOSTFILE within the job script with: 
-<code> 
-unset PE_HOSTFILE 
-</code> 
-  * recompile the MPI libraries with disabled tight integration support 
- 
-  * use the mpirun command with following options, '-machinefile' option has to be omitted: 
-<code> 
-    mpirun -npernode <number_of_processes_on_one_node> -np <number_of_total_processes> <command> 
-</code>