<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Inspector and MPI in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744869#M1783</link>
    <description>Thank you for your reply,&lt;BR /&gt;&lt;BR /&gt;the script look like this&lt;BR /&gt;&lt;BR /&gt;@echo off&lt;BR /&gt;
&lt;BR /&gt;
@rem cmdLine will store the arguments to this bat file, without the first two arguments.&lt;BR /&gt;
@rem The first two arguments are the mpishim path and the computer name. Those arguments&lt;BR /&gt;
@rem are already in the string below.&lt;BR /&gt;
set cmdLine=&lt;BR /&gt;
shift&lt;BR /&gt;
shift&lt;BR /&gt;
:VarLoop&lt;BR /&gt;
 if (%1)==() goto VarLoopEnd&lt;BR /&gt;
 set cmdLine=%cmdLine%%1 &lt;BR /&gt;
 shift&lt;BR /&gt;
goto VarLoop&lt;BR /&gt;
:VarLoopEnd&lt;BR /&gt;
&lt;BR /&gt;
"mpiexec.exe" -n 3 -wdir "C:\Documents\Visual Studio 
2008\Projects\MPI_SImulator\Debug\MPI_SImulator\App" "C:\Program 
Files\Microsoft Visual Studio 9.0\Common7\IDE\Remote 
Debugger\x86\mpishim.exe" 127.0.0.1 %cmdLine%&lt;BR /&gt;&lt;BR /&gt;Mpiexec it the engine that permits to control the MPI application, MPIshim is the debugger/scheduler. Do you think that work inserting insp-cl before the %cmdLine% command? I will try asap and i will post the answer.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 23 Jul 2010 15:42:43 GMT</pubDate>
    <dc:creator>Michele_Belotti</dc:creator>
    <dc:date>2010-07-23T15:42:43Z</dc:date>
    <item>
      <title>Inspector and MPI</title>
      <link>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744867#M1781</link>
      <description>I try to verify if there is some memory leakeage in MPI code. I compile with visual studio compiler and I run my code with HPC debugger. The program run perfectly. It 's possible to use inspector to verify if there is some leakeage? I don't know how to configure execution of inspector with the .bat file created by scheduler. It's possible.&lt;BR /&gt;Thank a lot&lt;BR /&gt;Michele</description>
      <pubDate>Wed, 14 Jul 2010 12:49:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744867#M1781</guid>
      <dc:creator>Michele_Belotti</dc:creator>
      <dc:date>2010-07-14T12:49:14Z</dc:date>
    </item>
    <item>
      <title>Inspector and MPI</title>
      <link>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744868#M1782</link>
      <description>Hi Michele:&lt;BR /&gt;&lt;BR /&gt;I think it should be possible if the batch file launches your executable. If it launches an MPI control app, it won't work. Basically, you need to intercept when your app just launched and insert the Inspector command line, insp-cl.&lt;BR /&gt;&lt;BR /&gt;I'm not real familiar with MPI, so I may be missing something. Can you share the batch file with us?&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jul 2010 00:20:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744868#M1782</guid>
      <dc:creator>David_A_Intel1</dc:creator>
      <dc:date>2010-07-20T00:20:01Z</dc:date>
    </item>
    <item>
      <title>Inspector and MPI</title>
      <link>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744869#M1783</link>
      <description>Thank you for your reply,&lt;BR /&gt;&lt;BR /&gt;the script look like this&lt;BR /&gt;&lt;BR /&gt;@echo off&lt;BR /&gt;
&lt;BR /&gt;
@rem cmdLine will store the arguments to this bat file, without the first two arguments.&lt;BR /&gt;
@rem The first two arguments are the mpishim path and the computer name. Those arguments&lt;BR /&gt;
@rem are already in the string below.&lt;BR /&gt;
set cmdLine=&lt;BR /&gt;
shift&lt;BR /&gt;
shift&lt;BR /&gt;
:VarLoop&lt;BR /&gt;
 if (%1)==() goto VarLoopEnd&lt;BR /&gt;
 set cmdLine=%cmdLine%%1 &lt;BR /&gt;
 shift&lt;BR /&gt;
goto VarLoop&lt;BR /&gt;
:VarLoopEnd&lt;BR /&gt;
&lt;BR /&gt;
"mpiexec.exe" -n 3 -wdir "C:\Documents\Visual Studio 
2008\Projects\MPI_SImulator\Debug\MPI_SImulator\App" "C:\Program 
Files\Microsoft Visual Studio 9.0\Common7\IDE\Remote 
Debugger\x86\mpishim.exe" 127.0.0.1 %cmdLine%&lt;BR /&gt;&lt;BR /&gt;Mpiexec it the engine that permits to control the MPI application, MPIshim is the debugger/scheduler. Do you think that work inserting insp-cl before the %cmdLine% command? I will try asap and i will post the answer.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Jul 2010 15:42:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744869#M1783</guid>
      <dc:creator>Michele_Belotti</dc:creator>
      <dc:date>2010-07-23T15:42:43Z</dc:date>
    </item>
    <item>
      <title>Inspector and MPI</title>
      <link>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744870#M1784</link>
      <description>First, I don't think you can run the Inspector &lt;B&gt;and &lt;/B&gt;the debugger. It will have to be one or the other. As far as being able to run Inspector on the MPI app, I will have to check. I kind of think no one has tried that - it wasn't part of the design goals. The target was C/C++ Windows* applications.&lt;BR /&gt;&lt;BR /&gt;Can you run the app standalone? Without MPI? That would be the easiest way, but maybe then it doesn't execute the same code path?</description>
      <pubDate>Fri, 23 Jul 2010 23:00:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Inspector-and-MPI/m-p/744870#M1784</guid>
      <dc:creator>David_A_Intel1</dc:creator>
      <dc:date>2010-07-23T23:00:52Z</dc:date>
    </item>
  </channel>
</rss>

