Intel® MPI Library
Get help with building, analyzing, optimizing, and scaling high-performance computing (HPC) applications.

Run MPI job on LSF for Windows

Yongjun_L_
Beginner
1,029 Views

When I ran a MPI job on Linux using LSF, I just use bsub to submit the following script file and 

#!/bin/bash
#BSUB -n 8
#BSUB -R "OSNAME==Linux && ( SPEED>=2500 ) && ( OSREL==EE60 || OSREL==EE58 || OSREL==EE63 ) &&
SFIARCH==OPT64 && mem>=32000"
#BSUB -q lnx64
#BSUB -W 1:40
cd my_working_directory
mpirun  mympi

The system will start 8 mympi jobs.  I don't need to specify machine names in the mpirun command line. 

How can I run the similar mpi job on the Windows cluster using LSF? If I ran the job with

mpiexec mympi

mympi job cannot start because mpiexec cannot get machine information.

Yongjun

 

 

0 Kudos
1 Reply
Dmitry_S_Intel
Moderator
1,029 Views

Hi,

Intel(R) MPI Library for Windows* OS supports integration with Microsoft* HPC Job Scheduler and Altair* PBS Professional*. To use it with IBM* Platform* LSF you need to get hostnames from LSF's environment and provide corresponding machinefile/hostfile to Intel MPI Library manually.

0 Kudos
Reply