Intel® MPI Library
Get help with building, analyzing, optimizing, and scaling high-performance computing (HPC) applications.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

How to run an MPI program on multiple nodes stored on a network drive ?

ArthurRatz
Novice
3,066 Views

Dear Collegues, I've got question is it possible to store an MPI program on a network drive and run it on each cluster node ?

Thanks in advance.

Cheers, Arthur.

 

0 Kudos
1 Solution
Artem_R_Intel1
Employee
3,066 Views

Hi Arthur,

You should just specify the appropriate network path to the MPI application in the command line (the path should be reachable from the all cluster nodes involved into the MPI run), for example (Linux* OS):

mpirun ... /nfs/.../test.exe

or (Windows* OS):

mpiexec ... \\hostname\...\test.exe

View solution in original post

0 Kudos
4 Replies
Artem_R_Intel1
Employee
3,066 Views

Hi Arthur,

Yes, mainly it's possible.

0 Kudos
ArthurRatz
Novice
3,066 Views

And could you give an example of how to do it ?

0 Kudos
Artem_R_Intel1
Employee
3,067 Views

Hi Arthur,

You should just specify the appropriate network path to the MPI application in the command line (the path should be reachable from the all cluster nodes involved into the MPI run), for example (Linux* OS):

mpirun ... /nfs/.../test.exe

or (Windows* OS):

mpiexec ... \\hostname\...\test.exe

0 Kudos
ArthurRatz
Novice
3,066 Views

Thanks a lot.

0 Kudos
Reply