Re: [OMPI users] How to set a process on a host but not bound to any core

2014-04-10 Thread Gan, Qi PW
It works!! Thanks a lot for the help!! -- Just add "-mca rmaps seq" to your command line, then. The mapper will take your hostfile (no rankfile) and map each proc sequentially to the listed nodes. You ne

Re: [OMPI users] How to set a process on a host but not bound to any core

2014-04-10 Thread Ralph Castain
Just add "-mca rmaps seq" to your command line, then. The mapper will take your hostfile (no rankfile) and map each proc sequentially to the listed nodes. You need to list each node once for each proc - something like this: nodeA nodeB nodeB nodeC nodeA nodeC ... would produce your described pa

Re: [OMPI users] How to set a process on a host but not bound to any core

2014-04-10 Thread Gan, Qi PW
We have OMPI 1.4.0, 1.4.5 and 1.6.5 installed on our system. >>What version of OMPI are you using? We have a "seq" mapper that does what you >>want, but the precise cmd line option for directing to use it depends a bit >>on the version. >>On Apr 9, 2014, at 9:22 AM, Gan, Qi PW wrote: > Hi, >

Re: [OMPI users] How to set a process on a host but not bound to any core

2014-04-09 Thread Ralph Castain
What version of OMPI are you using? We have a "seq" mapper that does what you want, but the precise cmd line option for directing to use it depends a bit on the version. On Apr 9, 2014, at 9:22 AM, Gan, Qi PW wrote: > Hi, > > I have a problem when setting the processes of a parallel job wi

[OMPI users] How to set a process on a host but not bound to any core

2014-04-09 Thread Gan, Qi PW
Hi, I have a problem when setting the processes of a parallel job with specified order. Suppose a job with 6 processes (rank0 to rank5) needs to run on 3 hosts (A, B, C) with following order: Rank0 -- A Rank1 -- B Rank2 -- B Rank3 -- C Rank4 -- A