<?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 &amp;gt;&amp;gt;&amp;gt; But it seems that there in Analyzers</title>
    <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802598#M1523</link>
    <description>&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 14.3999996185303px;"&gt;&amp;gt;&amp;gt;&amp;gt; But it seems that there is a problem for one of the subroutine: the displayed time is written for a comment line ?!? or for a line with nothing (see figure in attachment)...I can't read assembly code.&amp;gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 14.3999996185303px;"&gt;It seems that &amp;lt;Block 19&amp;gt; is a loop which is copying values from R15 register to different GP registers. I cannot see call instruction and I cannot see do loop construct in the source code on the left pane.Put it simply left pane does not correspond to right pane.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Nov 2014 10:50:57 GMT</pubDate>
    <dc:creator>Bernard</dc:creator>
    <dc:date>2014-11-05T10:50:57Z</dc:date>
    <item>
      <title>[Vtune Noob] First steps with Vtune Amplifier</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802590#M1515</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We have a little cluster with the Intel CLuster Toolkit. We develop in our research labor a Fluid-Structure Interaction program. This one is indeed 3 programs:&lt;BR /&gt;- a fluid solver written in Fortran;&lt;BR /&gt;- a solid solver written in C++;&lt;BR /&gt;- a coupling program written in C++.&lt;BR /&gt;The 3 programs communicate with MPI.&lt;BR /&gt;&lt;BR /&gt;Our goal is to optimize these programs, &lt;SPAN style="text-decoration: underline;"&gt;particularly the FORTRAN program&lt;/SPAN&gt;. So I have searched and found Vtune Amplifier. I have installed it for evaluation. And I have questions:&lt;BR /&gt;&lt;BR /&gt;- With which compilation options should the program compiled ? "-g -02" ? Are there compilation options, which are known to do some troubles in Vtune ?&lt;BR /&gt;&lt;BR /&gt;- In order to start our program we are using mpirun:&lt;BR /&gt;for example:&lt;BR /&gt;mpirun -np 1 "coupling program"; -np 1 "solid solver"; -np 5 "fluid solver"&lt;BR /&gt;What is the best way to start Vtune with this type of mpirun line ?&lt;BR /&gt;&lt;BR /&gt;- at the moment I have tested Vtune just on our "fluid solver". I have created a script with &lt;BR /&gt;mpirun -np 5 "fluid solver"&lt;BR /&gt;And started Vtune on it. I got the results. But it seems that there is a problem for one of the subroutine: the displayed time is written for a comment line ?!? or for a line with nothing (see figure in attachment)...I can't read assembly code...So I don't know if this is a bug just for the Fortran source code or for the assembly code too. What can I do ?&lt;BR /&gt;&lt;BR /&gt;Thx a lot,&lt;BR /&gt;Best regards,&lt;BR /&gt;Guillaume&lt;BR /&gt;</description>
      <pubDate>Sat, 12 Feb 2011 12:15:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802590#M1515</guid>
      <dc:creator>Guillaume_De_Nayer</dc:creator>
      <dc:date>2011-02-12T12:15:38Z</dc:date>
    </item>
    <item>
      <title>[Vtune Noob] First steps with Vtune Amplifier</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802591#M1516</link>
      <description>Sometime using compiler option "-O2"mightcause performance data dropped on a comment line, please disable optimization options.&lt;BR /&gt;&lt;BR /&gt;Usually I used below to collect performance data:&lt;BR /&gt;amplxe-cl -collect hotspots -r r0002hs &lt;STRONG&gt;--&lt;/STRONG&gt;mpiexec.hydra -bootstrap fork-np 4 ./pi.gcc&lt;BR /&gt;&lt;BR /&gt;Please see my &lt;A href="http://software.intel.com/en-us/articles/why-cant-hotspots-analysis-trace-spawned-processes-of-mpi-job/"&gt;article&lt;/A&gt;for more detail steps.&lt;BR /&gt;&lt;BR /&gt;It seemed that you ran system wide data collection (manually run application first: with mpirun). It should be OK!&lt;BR /&gt;&lt;BR /&gt;Regards, Peter</description>
      <pubDate>Mon, 14 Feb 2011 06:23:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802591#M1516</guid>
      <dc:creator>Peter_W_Intel</dc:creator>
      <dc:date>2011-02-14T06:23:44Z</dc:date>
    </item>
    <item>
      <title>[Vtune Noob] First steps with Vtune Amplifier</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802592#M1517</link>
      <description>Hi Peter,&lt;BR /&gt;&lt;BR /&gt;Thx for your answer. In order to solve my problem with the comments as described in the figure, I have to generate my source file with all the includes:&lt;BR /&gt;gcc -E -P -DINTEL -DU77 -DGNU -Isrc/include src/test.F &amp;gt; test.F_withinclude&lt;BR /&gt;&lt;BR /&gt;Then I copy the file test.F_withinclude in the place of my original test.F. Then Vtune starts and shows very interesting results, which make sense :D&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;Guillaume&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Feb 2011 08:39:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802592#M1517</guid>
      <dc:creator>Guillaume_De_Nayer</dc:creator>
      <dc:date>2011-02-14T08:39:25Z</dc:date>
    </item>
    <item>
      <title>[Vtune Noob] First steps with Vtune Amplifier</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802593#M1518</link>
      <description>Execution code (CPU spent time) locates in include file. Sounds great!</description>
      <pubDate>Tue, 15 Feb 2011 00:47:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802593#M1518</guid>
      <dc:creator>Peter_W_Intel</dc:creator>
      <dc:date>2011-02-15T00:47:43Z</dc:date>
    </item>
    <item>
      <title>Peter</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802594#M1519</link>
      <description>&lt;P&gt;Peter&lt;/P&gt;

&lt;P&gt;My vTune traces for a VS C++ application have stopped displaying stack information and the call tree ?&lt;/P&gt;

&lt;P&gt;it prints:&lt;/P&gt;

&lt;P&gt;[No call stack information]&lt;/P&gt;

&lt;P&gt;please help !&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2014 19:00:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802594#M1519</guid>
      <dc:creator>Stephen_T_1</dc:creator>
      <dc:date>2014-11-04T19:00:06Z</dc:date>
    </item>
    <item>
      <title>@ Stephen T</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802595#M1520</link>
      <description>&lt;P&gt;@ Stephen T&lt;/P&gt;

&lt;P&gt;What kind of analysis type did you use? Hotspots analysis will collect stack info automatically if you had debug info built.&lt;/P&gt;

&lt;P&gt;If you use advanced-hotspots, please add option "-knob collection-detail=stack-sampling" which will collect call stack information,&lt;/P&gt;

&lt;P&gt;BTW, VTune(TM) Amplifier XE 2015 Update 1 is ready for now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2014 02:19:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802595#M1520</guid>
      <dc:creator>Peter_W_Intel</dc:creator>
      <dc:date>2014-11-05T02:19:54Z</dc:date>
    </item>
    <item>
      <title>@ Stephen T</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802596#M1521</link>
      <description>&lt;P style="line-height: 19.5120010375977px;"&gt;@ Stephen T&lt;/P&gt;

&lt;P style="line-height: 19.5120010375977px;"&gt;I saw you had another thread&amp;nbsp;534715, which attached hotspots result r021hs.&lt;/P&gt;

&lt;P style="line-height: 19.5120010375977px;"&gt;In that report, there was more IDLE time (1.353s) than serial time (0.651s), and top 1-N hot functions were dropped in ntdll.dll, MSVCR100.dll, and kernel32.dll. Hot function "std::getline&amp;lt;...&amp;gt;" in your module Test.exe only took&amp;nbsp;&lt;SPAN style="font-weight: 700;"&gt;6.002ms&lt;/SPAN&gt;&amp;nbsp;with [No call stack information]. Actually, I doubt that your function was called by ntdll.dll which has no symbol info, this caused no stack info to be displayed.&lt;/P&gt;

&lt;P style="line-height: 19.5120010375977px;"&gt;You can try to build test case which spends more CPU time, and make a caller in your code which call your hot function(s) - thus, caller will not be in ntdll.dll, to verify this issue. Hope it helps.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2014 03:20:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802596#M1521</guid>
      <dc:creator>Peter_W_Intel</dc:creator>
      <dc:date>2014-11-05T03:20:54Z</dc:date>
    </item>
    <item>
      <title>Hi Stephen!</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802597#M1522</link>
      <description>&lt;P&gt;Hi Stephen!&lt;/P&gt;

&lt;P&gt;Please make sure you're building with "/Zi" (generate debug info) and there are .pdb files right near your executable/libraries.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2014 03:35:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802597#M1522</guid>
      <dc:creator>Vitaly_S_Intel</dc:creator>
      <dc:date>2014-11-05T03:35:45Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;&gt; But it seems that there</title>
      <link>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802598#M1523</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 14.3999996185303px;"&gt;&amp;gt;&amp;gt;&amp;gt; But it seems that there is a problem for one of the subroutine: the displayed time is written for a comment line ?!? or for a line with nothing (see figure in attachment)...I can't read assembly code.&amp;gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 14.3999996185303px;"&gt;It seems that &amp;lt;Block 19&amp;gt; is a loop which is copying values from R15 register to different GP registers. I cannot see call instruction and I cannot see do loop construct in the source code on the left pane.Put it simply left pane does not correspond to right pane.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2014 10:50:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Vtune-Noob-First-steps-with-Vtune-Amplifier/m-p/802598#M1523</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2014-11-05T10:50:57Z</dc:date>
    </item>
  </channel>
</rss>

