Hi,
I am trying to profile one of our applications and would like each rank to
report to a profiler through a specific port. This is a Java program, so
the way I would like to do this is to pass the port as a command line
argument to the JVM. For example,
mpirun -np 2 java MyProgram
Note the po
Wrap the call in a bash script or the like, there are several examples on
this mailing list.
I am sorry I am not at my computer so cannot find them.
On 19 Jul 2015 06:34, "Saliya Ekanayake" wrote:
> Hi,
>
> I am trying to profile one of our applications and would like each rank to
> report to a
Or you can just do (assuming you don’t have a large number of ranks):
mpirun -np 1 java MyProgram : -np 1 java
MyProgram
They will all wind up in the same comm_world.
> On Jul 19, 2015, at 12:30 AM, Nick Papior wrote:
>
> Wrap the call in a bash script or the like, there are several exampl
It really helps if you tell us what version of OMPI you are using :-)
Regardless, this looks like a classic mismatch between the OMPI version used to
compile the app versus the one being used for mpirun. You might want to make
sure you have everything consistent
> On Jul 18, 2015, at 2:21 PM,
So does this mean I can have different options for each process by
separating them with colons? That'll be ideal for me, because profiling one
rank would be enough, so I can pass a port only to that rank and let others
just run. Is this the case?
Thank you,
Saliya
On Sun, Jul 19, 2015 at 11:29 AM
Yes
> On Jul 19, 2015, at 10:47 AM, Saliya Ekanayake wrote:
>
> So does this mean I can have different options for each process by separating
> them with colons? That'll be ideal for me, because profiling one rank would
> be enough, so I can pass a port only to that rank and let others just ru
Hi Ralph, thanks for the reply, the OMPI version I'm using is : Open MPI
v1.8.7
On Sun, Jul 19, 2015 at 10:34 AM, Ralph Castain wrote:
> It really helps if you tell us what version of OMPI you are using :-)
>
> Regardless, this looks like a classic mismatch between the OMPI version
> used to co