Hi Ravi,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The
problem is as simple as this :&nbsp; When I issue the mpiexec command
with the gdb option, i wish to have xterm launch two debug windows so
that i can trace through sender&#39;s and the receiver&#39;s codes. <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
As of now, xterm is launching two windows, but one on my local machine
and the other on the remote machine and I wish to have both displayed
on the local machine. <br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
You have to set the DISPLAY variable to the IPAddress:0.0 on the remote
machine whre you are trying to run the job.<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
The IPAddress should be the remote machine&#39;s or the local machine&#39;s? <br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I anyway tried both. <br>
&nbsp;At the local machine, i did&nbsp; &quot;xhost +&quot; and got :<br>
<span style="color: rgb(0, 0, 153);">access control disabled, clients can connect from any host</span><br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
But, the remote node&#39;s debug window is still being launched in the
remote machine and not on the local machine.<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
Thanks,<br>
Krishna Chaitanya K &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  <br><br><div><span class="gmail_quote">On 1/3/08, <b class="gmail_sendername">Ravi Thati</b> &lt;<a href="mailto:gotothati@gmail.com">gotothati@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi Chaitanya,<br><br>&nbsp;I have not got the problem clearly.<br>But still I am guessing this.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
You have to set the DISPLAY variable to the IPAddress:0.0 on the remote
machine whre you are trying to run the job.<br>
<br>&nbsp;Then , at the local machine <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if windows, run XManager.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if Linux , run the &quot;xhost + &quot; command.<div><span class="e" id="q_1173f2d7326e6176_1"><br><br><br><br><br><br><br><br><br><div class="gmail_quote">
On Jan 3, 2008 3:33 PM, Krishna Chaitanya &lt;
<a href="mailto:kris.c1986@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">kris.c1986@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Thanks for the help, guess I complicated my question un-necessarily. <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I wish to run a program on two
machines and&nbsp; have two&nbsp; debug windows on my local machine, so
that i can trace through the pt2pt code. This must concern xterm and
setting the display variable correctly. At this stage, I have the
DISPLAY set to 0.0 on both the machines and I am ssh-ing into the
remote machine by using the -X switch. The debug window for the remote
machine is getting launched at the remote terminal but is not getting
displayed on mine. Please let me know what needs to be done to have the
window displayed on my machine. <br>
<br>
Thanks,<br>
Krishna Chaitanya K <br>
<br>
<br>
<br><br><div><span class="gmail_quote">On 1/2/08, <b class="gmail_sendername">Darius Buntinas</b> &lt;<a href="mailto:buntinas@mcs.anl.gov" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">buntinas@mcs.anl.gov
</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<br>I&#39;m not sure exactly what you want to do, so here are a few ideas.<br><br>If you want to start rank 0 before rank 1, you can change your test<br>program so it calls mpi_commrank right after mpi_init.&nbsp;&nbsp;Then set a<br>


breakpoint just after mpi_commrank, and when you hit the breakpoint, you<br>can look at the rank and decide which one to continue running.<br><br>If you can&#39;t modify the test program, you can set the breakpoint just<br>


after mpi_init, then read MPIDI_Process.my_pg_rank.&nbsp;&nbsp;You&#39;ll have to<br>configure MPICH2 with --enable-g=dbg to get debugging symbols added (you<br>might also want to configure with --disable-compiler-optimizations to
<br>
remove the -O2 flag and make it easier to step through the code).<br><br>If you really need to know the rank of a process before mpi_init is<br>called, you can read the PMI_RANK environment variable.&nbsp;&nbsp;Note that<br>mpi_init performs an implicit barrier, so if one process calls mpi_init,
<br>it won&#39;t exit until all other processes have called mpi_init, so even if<br>you start one process before the others, it won&#39;t get past mpi_init.<br><br>Hope that helps,<br>-d<br><br>On 12/31/2007 04:07 AM, Krishna Chaitanya wrote:
<br>&gt; Hi,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I
have been tracing the flow of the mpich code by<br>&gt; executing a simple program having MPI_Send() and MPI_Recv(),on one<br>&gt; machine.&nbsp;&nbsp;I have been using gdb along with xtern to have two windows<br>&gt; open at the same time as I step through the code. I wish to get a better
<br>&gt; glimpse of the working of the point to point calls, by launching the job<br>&gt; on two machines and by tracing the flow in a similar manner. Could you<br>&gt; please tell me how I can go about it? I have a feeling that this can be
<br>&gt; done by hard-coding the macros and telling the daemons directly that one<br>&gt; machine is rank1 and the other is rank2. That way, i can start rank1<br>&gt; process first and the rank2 process a little later and trace through the
<br>&gt; code.<br>&gt;<br>&gt; Thanks,<br>&gt; Krishna Chaitanya,<br>&gt; Dept of Information Technology,<br>&gt; National Institute of Technology, Karnataka ( NITK )<br>&gt; India<br>&gt;<br>&gt; --<br>&gt; In the middle of difficulty, lies opportunity
<br></blockquote></div><font color="#888888"><br><br clear="all"><br>-- <br>In the middle of difficulty, lies opportunity
</font></blockquote></div><br><br clear="all"><br></span></div><span class="sg">-- <br>Ravi.T<br>Oom asathoma sadgamaya (Lead me from darkeness to light)<br>Thamasoma jyothirgamaya ( From ignorance to truth)<br>Mruthyorma amrutham gamaya (From death to eternity)
<br>Oom shanti shanti shantihi ( Let peace prevail everywhere)
</span></blockquote></div><br><br clear="all"><br>-- <br>In the middle of difficulty, lies opportunity