<?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 Re: Request to add my account in video group in Analyzers</title>
    <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1346467#M21703</link>
    <description>&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;You use correct version of VTune. GPU Hotspots viewpoint could be hidden in a case, when some of important data were not collected. It could be result of incorrect system configuration, or bug on VTune side.&lt;/P&gt;
&lt;P&gt;Could you attach result for proper analysis and&amp;nbsp;log of .../bin64/vtune-self-checker ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Sergey&lt;/P&gt;</description>
    <pubDate>Fri, 24 Dec 2021 10:02:38 GMT</pubDate>
    <dc:creator>SergeyD_Intel</dc:creator>
    <dc:date>2021-12-24T10:02:38Z</dc:date>
    <item>
      <title>Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1336800#M21579</link>
      <description>&lt;P&gt;Hi I was trying gpu profiling on devcloud and I am getting incomplete profiler results.&lt;/P&gt;
&lt;P&gt;I stumbled across &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/vtune-help/top/installation/set-up-system-for-gpu-analysis.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/develop/documentation/vtune-help/top/installation/set-up-system-for-gpu-analysis.html&lt;/A&gt; .&lt;/P&gt;
&lt;P&gt;Can you add me to the "video" group so I can do gpu profiling using vtune on devcloud?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 02:29:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1336800#M21579</guid>
      <dc:creator>vaidya__miheer</dc:creator>
      <dc:date>2021-11-17T02:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1336865#M21580</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for posting in Intel Communities.&lt;/P&gt;
&lt;P&gt;As you are trying on Devcloud There is no separate video group available in Devcloud. I ran GPU offload analysis on Devcloud and it works fine. Let me share the steps I followed&amp;nbsp;for vector-add sample.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Connect to the Devcloud:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ssh devcloud&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently you are in login node then connect to compute node :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;qsub -I -l nodes=1:gpu:ppn=2 -d .&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;qsub -I -l nodes=1:dual_gpu:ppn=2 -d .&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Download the samples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;git clone https://github.com/oneapi-src/oneAPI-samples.git&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Go to the vector-add sample&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;cd oneAPI-samples/DirectProgramming/DPC++/DenseLinearAlgebra/vector-add/src&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this directory you can find 2 samples with following names: vector-add-buffers.cpp, vector-add-usm.cpp you can select any one of them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Now we need to build an executable file:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;dpcpp ./vector-add-buffers.cpp -o vector-add-buffer&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now an executable is created with name vector-add-buffer, with help of this we can profile on Vtune.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;GPU offload analysis:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;vtune -collect gpu-offload ./vector-add-buffer&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find a logs in same directory (eg:r000go)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Devcloud wouldn't be possible to add a specific user to any group as the permissions would remain the same for all users.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Jaideep&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 07:13:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1336865#M21580</guid>
      <dc:creator>JaideepK_Intel</dc:creator>
      <dc:date>2021-11-17T07:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1337127#M21581</link>
      <description>&lt;P&gt;Hi Jaideep, I am trying to run &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/vtune-help/top/analyze-performance/accelerators-group/gpu-compute-media-hotspots-analysis.html#gpu-compute-media-hotspots-analysis_CODE-LEVEL" target="_blank"&gt;https://www.intel.com/content/www/us/en/develop/documentation/vtune-help/top/analyze-performance/accelerators-group/gpu-compute-media-hotspots-analysis.html#gpu-compute-media-hotspots-analysis_CODE-LEVEL&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I got below command line from vtune:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;vtune -collect-with runsa -knob enable-stack-collection=true -knob useEventBasedCounts=true -knob "gpu-profiling-mode=0:0:2.0|instcount" -knob "gpu-counters-mode=0:0:2.0|global-local-accesses" -knob enable-gpu-usage=true -knob collectMemObjects=true -knob analyzeDgfxBandwidth=true  -knob collectPStateData=falsevtune -collect-with runsa -knob enable-stack-collection=true -knob useEventBasedCounts=true -knob "gpu-profiling-mode=0:0:2.0|instcount" -knob "gpu-counters-mode=0:0:2.0|global-local-accesses" -knob enable-gpu-usage=true -knob collectMemObjects=true -knob analyzeDgfxBandwidth=true -knob collectPStateData=false ./gemm-run-gpu.out
&lt;/LI-CODE&gt;
&lt;P&gt;I get error:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;vtune: Error: Events for detailed GPU utilization analysis cannot be collected due to a lack of credentials. Make sure you have read/write access to debugFS. You may either run the analysis with root privileges (recommended) or follow the configuration instructions provided in the Linux and Android Kernel Analysis help to
pic.&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Maybe it's not possible to do this analysis on devcloud?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 23:23:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1337127#M21581</guid>
      <dc:creator>vaidya__miheer</dc:creator>
      <dc:date>2021-11-17T23:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1337278#M21582</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for sharing the command. We were able to reproduce the same issue and informed to Development team as well. We are working on this and we will get back to you soon.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Jaideep&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 11:42:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1337278#M21582</guid>
      <dc:creator>JaideepK_Intel</dc:creator>
      <dc:date>2021-11-24T11:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1340293#M21604</link>
      <description>&lt;P&gt;Hello Vaidya,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Given message should be considered as "Info", not as "Error".&amp;nbsp; The point is that o&lt;SPAN style="font-family: inherit;"&gt;ption&amp;nbsp;&lt;/SPAN&gt;&lt;EM style="font-family: inherit;"&gt;enable-gpu-usage&amp;nbsp;&lt;/EM&gt;&lt;SPAN style="font-family: inherit;"&gt;requires access to&amp;nbsp;debugFS. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;So, VTune work as designed, however I agree that message should improved.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Is it possible to disable this option?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Maybe I can help to configure analysis for collecting data whish is needed to you?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Sergey&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 17:05:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1340293#M21604</guid>
      <dc:creator>SergeyD_Intel</dc:creator>
      <dc:date>2021-11-30T17:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1341356#M21621</link>
      <description>&lt;P&gt;Hello Sergey,&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;SPAN class="sub_section_element_selectors" style="font-family: inherit;"&gt;Maybe I can help to configure analysis for collecting data whish is needed to you?&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;That would be awesome. I am trying to get the values of gpu metrics: &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/vtune-help/top/reference/gpu-metrics-reference.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/develop/documentation/vtune-help/top/reference/gpu-metrics-reference.html&lt;/A&gt; using vtune when I run my kernel (as I change the design of kernel). In particular I am trying to look at:&lt;/P&gt;
&lt;P&gt;1. Local memory accesses (or utilized bandwidth) to verify if the kernel is spilling or not&lt;/P&gt;
&lt;P&gt;2. Shared&amp;nbsp;memory accesses and bank conflicts (&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/iocl-opg/top/optimizing-opencl-usage-with-intel-processor-graphics/memory-access-considerations/recommendations/local-memory.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/develop/documentation/iocl-opg/top/optimizing-opencl-usage-with-intel-processor-graphics/memory-access-considerations/recommendations/local-memory.html&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;3. Dram accesses (or utilized bandwidth)&lt;/P&gt;
&lt;P&gt;----&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;SPAN class="sub_section_element_selectors" style="font-family: inherit;"&gt;Is it possible to disable this option?&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I am not sure which option you are referring here.&lt;/P&gt;
&lt;P&gt;----&lt;/P&gt;
&lt;P&gt;Thanking you,&lt;/P&gt;
&lt;P&gt;+miheer&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 20:26:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1341356#M21621</guid>
      <dc:creator>vaidya__miheer</dc:creator>
      <dc:date>2021-12-03T20:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1341818#M21630</link>
      <description>&lt;P&gt;For getting GPU Memory and DRAM memory bandwidth, you could run predefined GPU Hotspot analysis:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp;vtune -collect gpu-hotspots -knob collect-memory-bandwidth=true&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The same in GUI:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SergeyD_Intel_0-1638810970549.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/24590i3D9A2569EDD6E96E/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="SergeyD_Intel_0-1638810970549.png" alt="SergeyD_Intel_0-1638810970549.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SergeyD_Intel_1-1638811685034.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/24591iB1FE1601CB463B3E/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="SergeyD_Intel_1-1638811685034.png" alt="SergeyD_Intel_1-1638811685034.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But unfortunately, only few hosts could measure SLM traffic.&lt;/P&gt;
&lt;P&gt;Could you specify CPU and GPU on your system?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, you could use &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/vtune-help/top/installation/install-web-server/configure-user-authentication-authorization.html?wapkw=vtune-backend" target="_self"&gt;vtune-backend&lt;/A&gt; server for remote access with UI&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;___________&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;&lt;EM&gt;&lt;SPAN class="sub_section_element_selectors" style="font-family: inherit;"&gt;Is it possible to disable this option?&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I am not sure which option you are referring here.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P class="sub_section_element_selectors"&gt;I mean this option:&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;vtune -collect-with runsa -knob enable-stack-collection&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token assign-left variable"&gt;useEventBasedCounts&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"gpu-profiling-mode=0:0:2.0|instcount"&lt;/SPAN&gt;&lt;SPAN&gt; -knob &lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"gpu-counters-mode=0:0:2.0|global-local-accesses"&lt;/SPAN&gt;&lt;SPAN&gt; -knob enable-gpu-usage&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token assign-left variable"&gt;collectMemObjects&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token assign-left variable"&gt;analyzeDgfxBandwidth&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token assign-left variable"&gt;collectPStateData&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;falsevtune -collect-with runsa -knob enable-stack-collection&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token assign-left variable"&gt;useEventBasedCounts&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"gpu-profiling-mode=0:0:2.0|instcount"&lt;/SPAN&gt;&lt;SPAN&gt; -knob &lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"gpu-counters-mode=0:0:2.0|global-local-accesses"&lt;/SPAN&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt; -knob enable-gpu-usage&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;SPAN&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;/FONT&gt; -knob &lt;/SPAN&gt;&lt;SPAN class="token assign-left variable"&gt;collectMemObjects&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token assign-left variable"&gt;analyzeDgfxBandwidth&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;true -knob &lt;/SPAN&gt;&lt;SPAN class="token assign-left variable"&gt;collectPStateData&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;false ./gemm-run-gpu.out&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;Sergey&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 17:28:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1341818#M21630</guid>
      <dc:creator>SergeyD_Intel</dc:creator>
      <dc:date>2021-12-06T17:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1342612#M21641</link>
      <description>&lt;P&gt;Hello Sergey,&lt;/P&gt;
&lt;P&gt;I am on using Intel(R) Xeon(R) E-2176G looking at gen9 gpus on (&lt;!--StartFragment --&gt;&lt;SPAN style="color: #00ff00; background-color: #000000;"&gt;s001-n157&lt;/SPAN&gt;).&lt;/P&gt;
&lt;P&gt;&lt;!--EndFragment --&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 22:40:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1342612#M21641</guid>
      <dc:creator>vaidya__miheer</dc:creator>
      <dc:date>2021-12-08T22:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1346135#M21694</link>
      <description>&lt;P&gt;Hello Sergey,&lt;/P&gt;
&lt;P&gt;I don't see the tab "GPU Compute/Media Hotspots (preview)" in the available options as shown in your screenshot (and I guess because of that I don't see the graph which you have posted in earlier reply). Which vtune version are you using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Intel(R) oneAPI VTune(TM) Profiler 2022.0.0 (build 621730) Command Line Tool (&lt;!--StartFragment --&gt;&lt;SPAN style="color: #cccccc; background-color: #0c0c0c;"&gt;/glob/development-tools/versions/oneapi/2022.1.1/oneapi/vtune/2022.0.0/bin64/vtune&lt;/SPAN&gt;).&lt;!--EndFragment --&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vaidya__miheer_0-1640214908539.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/25037iF2C230675FF4B05A/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="vaidya__miheer_0-1640214908539.png" alt="vaidya__miheer_0-1640214908539.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 23:33:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1346135#M21694</guid>
      <dc:creator>vaidya__miheer</dc:creator>
      <dc:date>2021-12-22T23:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1346467#M21703</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;You use correct version of VTune. GPU Hotspots viewpoint could be hidden in a case, when some of important data were not collected. It could be result of incorrect system configuration, or bug on VTune side.&lt;/P&gt;
&lt;P&gt;Could you attach result for proper analysis and&amp;nbsp;log of .../bin64/vtune-self-checker ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Sergey&lt;/P&gt;</description>
      <pubDate>Fri, 24 Dec 2021 10:02:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1346467#M21703</guid>
      <dc:creator>SergeyD_Intel</dc:creator>
      <dc:date>2021-12-24T10:02:38Z</dc:date>
    </item>
    <item>
      <title>Re:Request to add my account in video group</title>
      <link>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1363347#M21911</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. This thread will no longer be monitored by Intel. If you need further assistance, please post a new question.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jaideep&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Feb 2022 13:10:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/Request-to-add-my-account-in-video-group/m-p/1363347#M21911</guid>
      <dc:creator>JaideepK_Intel</dc:creator>
      <dc:date>2022-02-24T13:10:51Z</dc:date>
    </item>
  </channel>
</rss>

