<?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 Profiling workloads within toil in Analyzers</title>
    <link>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623027#M25144</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to use vtune hotspots to profile an application from the command line. The application uses &lt;A href="https://toil.readthedocs.io/en/latest/" target="_self"&gt;toil&lt;/A&gt; internally , and I'd like to get profiling results for all the jobs within the toil pipeline. Is this possible using vtune? When I try the obvious `vtune -collect hotspots ./myapp` the application hangs.&lt;BR /&gt;&lt;BR /&gt;Any leads or pointers to documentation would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Noah&lt;/P&gt;</description>
    <pubDate>Tue, 13 Aug 2024 22:55:13 GMT</pubDate>
    <dc:creator>kaplannp</dc:creator>
    <dc:date>2024-08-13T22:55:13Z</dc:date>
    <item>
      <title>Profiling workloads within toil</title>
      <link>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623027#M25144</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to use vtune hotspots to profile an application from the command line. The application uses &lt;A href="https://toil.readthedocs.io/en/latest/" target="_self"&gt;toil&lt;/A&gt; internally , and I'd like to get profiling results for all the jobs within the toil pipeline. Is this possible using vtune? When I try the obvious `vtune -collect hotspots ./myapp` the application hangs.&lt;BR /&gt;&lt;BR /&gt;Any leads or pointers to documentation would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Noah&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 22:55:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623027#M25144</guid>
      <dc:creator>kaplannp</dc:creator>
      <dc:date>2024-08-13T22:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Profiling workloads within toil</title>
      <link>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623056#M25145</link>
      <description>&lt;P&gt;Try using hardware event-based sampling mode instead.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;vtune -collect hotspots &lt;STRONG&gt;-knob sampling-mode=hw&lt;/STRONG&gt; ./myapp&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2024 01:15:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623056#M25145</guid>
      <dc:creator>yuzhang3_intel</dc:creator>
      <dc:date>2024-08-14T01:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Profiling workloads within toil</title>
      <link>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623167#M25147</link>
      <description>&lt;P&gt;Thanks for the help!&lt;/P&gt;&lt;P&gt;This works for some inputs to my application, but on other inputs it freezes and produces&lt;BR /&gt;"kernel:[ 1948.765550] watchdog: BUG: soft lockup - CPU#30 stuck for 52s! [_toil_worker:8611]"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-----------EDIT---------------&lt;/P&gt;&lt;P&gt;I've fixed the issue. It was related to the -knob enable-stack-collection=true flag that I was passing to vtune, which caused the machine to run out of memory.&lt;/P&gt;&lt;P&gt;Accepting the answer as this solved my first question.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2024 22:39:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623167#M25147</guid>
      <dc:creator>kaplannp</dc:creator>
      <dc:date>2024-08-14T22:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: Profiling workloads within toil</title>
      <link>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623296#M25149</link>
      <description>&lt;P&gt;You can specify the the option '-&lt;SPAN&gt;data-limit' to limit the&amp;nbsp;amount of&amp;nbsp;raw data (in MB) collection.&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE class="line-numbers language-plain"&gt;&lt;CODE&gt;vtune -collect hotspots -data-limit=200 myApp&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For details, please refer to the User Guide below:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/docs/vtune-profiler/user-guide/2024-2/data-limit.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/docs/vtune-profiler/user-guide/2024-2/data-limit.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2024 00:37:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623296#M25149</guid>
      <dc:creator>yuzhang3_intel</dc:creator>
      <dc:date>2024-08-15T00:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Profiling workloads within toil</title>
      <link>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623424#M25150</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2024 12:43:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Profiling-workloads-within-toil/m-p/1623424#M25150</guid>
      <dc:creator>kaplannp</dc:creator>
      <dc:date>2024-08-15T12:43:53Z</dc:date>
    </item>
  </channel>
</rss>

