Resources for IT Professionals > 포럼 홈 > Windows HPC Server Message Passing Interface (MPI) > Network Interface using HPC for sending mpi messages
질문하기질문하기
 

질문Network Interface using HPC for sending mpi messages

  • 2009년 3월 30일 월요일 오전 5:31Valia 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    Tell me, please, how to learn network interface, which is used by HPC for sending mpi messages, when we start parallel program, if cluster contains some network interfaces?

모든 응답

  • 2009년 4월 3일 금요일 오전 6:11Jeff Baxter 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    Hi Valia

    The MPI network is controlled on a cluster wide basis by the CCP_MPI_NETMASK environment variable. You can view the current setting by running "cluscfg listenvs" from an admin command prompt, and set it with a command like "cluscfg setenvs CCP_MPI_NETMASK=192.168.0.0/255.255.0.0"

    You can override the setting on a per run basis by passing in MPICH_NETMASK to mpiexec.exe ( mpiexec -env MPICH_NETMASK 10.1.0.0/255.255.0.0 )

  • 2009년 4월 4일 토요일 오전 10:31Valia 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    Thank you very much indeed. But may be there are two network interfaces having the same subnet mask (I understand that it is infrequent occurrence). What to do in this situation  and what network interface will be used for sending mpi messages?