<?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:DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1385254#M2172</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for providing the details.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel oneAPI DPC++ can be used only with Intel GEN9 and higher GPUs.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Here is the link for Intel® oneAPI DPC++/C++ Compiler System Requirements:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/system-requirements/intel-oneapi-dpcpp-system-requirements.html" rel="noopener noreferrer" target="_blank"&gt;https://www.intel.com/content/www/us/en/developer/articles/system-requirements/intel-oneapi-dpcpp-system-requirements.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you want to use the DPC++ compiler with NVIDIA GPU you can use the opensource DPC++ compiler.&lt;/P&gt;&lt;P&gt;Please refer to the below link regarding opensource oneAPI DPC++ compiler:&lt;/P&gt;&lt;P&gt;&lt;A href="https://intel.github.io/llvm-docs/GetStartedGuide.html" rel="noopener noreferrer" target="_blank"&gt;https://intel.github.io/llvm-docs/GetStartedGuide.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;These forums are intended to support the queries related to Intel Products. Here, we do not provide support to the NVidia GPU. You can also get support for non-Intel GPUs. Please find the link for raising the queries:&amp;nbsp;&lt;A href="https://github.com/intel/llvm/issues" rel="noopener noreferrer" target="_blank"&gt;https://github.com/intel/llvm/issues&lt;/A&gt;&lt;/P&gt;&lt;P&gt;So, can we go ahead and close this thread?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 18 May 2022 13:26:08 GMT</pubDate>
    <dc:creator>VarshaS_Intel</dc:creator>
    <dc:date>2022-05-18T13:26:08Z</dc:date>
    <item>
      <title>DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1381443#M2101</link>
      <description>&lt;P&gt;I try to develop a code based on MPI &amp;amp; DPC++ for large-scale simulation. The problem can be summarized as: I want to declare the data size, allocate the data memory inside of my class constructor, and then try to use them in the functions inside of my class. Then I realize that I have to provide a const size to the buffer if I want to use an accessor, but MPI makes an array of different sizes on each rank. Then I find that it is also not possible to use shared memory, because in DPC++ I cannot use this pointer, and the array or matrix allocated in the class cannot be used in subfunction. I am confused and have no idea about that.&lt;/P&gt;
&lt;P&gt;the code is like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="lang-cpp s-code-block"&gt;&lt;CODE class="hljs language-cpp"&gt;&lt;SPAN class="hljs-keyword"&gt;class&lt;/SPAN&gt; &lt;SPAN class="hljs-title class_"&gt;abc&lt;/SPAN&gt;{
    queue Q{};
    std::array&amp;lt;&lt;SPAN class="hljs-type"&gt;int&lt;/SPAN&gt;, constsize&amp;gt; e;
    std::array&amp;lt;&lt;SPAN class="hljs-type"&gt;double&lt;/SPAN&gt;, constsize&amp;gt;t;
    &lt;SPAN class="hljs-built_in"&gt;abc&lt;/SPAN&gt;(){
    ua = &lt;SPAN class="hljs-built_in"&gt;malloc_shared&lt;/SPAN&gt;&amp;lt;&lt;SPAN class="hljs-type"&gt;double&lt;/SPAN&gt;&amp;gt;(local_size, &lt;SPAN class="hljs-keyword"&gt;this&lt;/SPAN&gt;-&amp;gt;Q);
    }
    
    &lt;SPAN class="hljs-function"&gt;&lt;SPAN class="hljs-type"&gt;void&lt;/SPAN&gt; &lt;SPAN class="hljs-title"&gt;b&lt;/SPAN&gt;&lt;SPAN class="hljs-params"&gt;()&lt;/SPAN&gt;&lt;/SPAN&gt;;
    
}

&lt;SPAN class="hljs-function"&gt;&lt;SPAN class="hljs-type"&gt;void&lt;/SPAN&gt; &lt;SPAN class="hljs-title"&gt;abc::b&lt;/SPAN&gt;&lt;SPAN class="hljs-params"&gt;()&lt;/SPAN&gt;&lt;/SPAN&gt;{
      &lt;SPAN class="hljs-keyword"&gt;for&lt;/SPAN&gt;(&lt;SPAN class="hljs-type"&gt;int&lt;/SPAN&gt; i=&lt;SPAN class="hljs-number"&gt;0&lt;/SPAN&gt;;i&amp;lt;constsize;i++){
      e[i]=i;
      t[i]=&lt;SPAN class="hljs-number"&gt;2&lt;/SPAN&gt;*i; 
      }

    buffer&amp;lt;&lt;SPAN class="hljs-type"&gt;int&lt;/SPAN&gt;&amp;gt; ee{e};
    buffer&amp;lt;&lt;SPAN class="hljs-type"&gt;double&lt;/SPAN&gt;&amp;gt; tt{t};
&lt;SPAN class="hljs-keyword"&gt;auto&lt;/SPAN&gt; ini2 = &lt;SPAN class="hljs-keyword"&gt;this&lt;/SPAN&gt;-&amp;gt;Q.&lt;SPAN class="hljs-built_in"&gt;submit&lt;/SPAN&gt;([&amp;amp;](handler &amp;amp;h)
            { accessor eee{ee, h, read_only};
              accessor ttt{tt, h, read_only};
                                        
              h.&lt;SPAN class="hljs-built_in"&gt;parallel_for&lt;/SPAN&gt;(range{size1, size2, size3}, [=](id&amp;lt;&lt;SPAN class="hljs-number"&gt;3&lt;/SPAN&gt;&amp;gt; idx)
              &lt;SPAN class="hljs-type"&gt;double&lt;/SPAN&gt; eu=ua[id[&lt;SPAN class="hljs-number"&gt;0&lt;/SPAN&gt;]];
              &lt;SPAN class="hljs-type"&gt;int&lt;/SPAN&gt; aa=eee[id[&lt;SPAN class="hljs-number"&gt;1&lt;/SPAN&gt;]];
              &lt;SPAN class="hljs-type"&gt;double&lt;/SPAN&gt; cc=ttt[id[&lt;SPAN class="hljs-number"&gt;2&lt;/SPAN&gt;]];
             }

}&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;e and t can be accessed because they have const size, and I can use the buffer. But ua has local size, and it depends on MPI, so I cannot use buffer, and shared memory also cannot be used in sub-function.&lt;/P&gt;
&lt;P&gt;Any help with this?&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2022 13:42:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1381443#M2101</guid>
      <dc:creator>zchmacchiato</dc:creator>
      <dc:date>2022-05-03T13:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1381951#M2109</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting in Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We cannot use the 'this' pointer directly inside a kernel. However, we can pass it as an argument inside the capture clause of the lambda function as shown in the below screenshot:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="thisDPCPP.png" style="width: 527px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/29114iCAA2B05174C27E8A/image-dimensions/527x126?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="527" height="126" role="button" title="thisDPCPP.png" alt="thisDPCPP.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Please find the attached code which works fine at our end. Could you please let us know if you are still facing any issues?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 06:30:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1381951#M2109</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-05-05T06:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1382618#M2110</link>
      <description>&lt;P&gt;Thank you for your reply, and with this help, the code works well. Now, I have lots of parameters that is from this class, and actually, they are all needed in the kernel function. Is that possible to instead of using[=, par1=this-&amp;gt;p1, par2=this-&amp;gt;p2, par3=this-&amp;gt;p3.......parn=this-&amp;gt;pn] and use[=,this] to solve this problem?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best.&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 13:07:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1382618#M2110</guid>
      <dc:creator>zchmacchiato</dc:creator>
      <dc:date>2022-05-08T13:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1383484#M2125</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please try using the attached code? Please find the below screenshot for more information:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="thisDPCPPCode.png" style="width: 794px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/29347i481D16BDE40D95D8/image-dimensions/794x124?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="794" height="124" role="button" title="thisDPCPPCode.png" alt="thisDPCPPCode.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 11:53:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1383484#M2125</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-05-11T11:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1383550#M2126</link>
      <description>&lt;P&gt;But I got the error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;PI CUDA ERROR:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt; Value: &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;700&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt; Name:&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;CUDA_ERROR_ILLEGAL_ADDRESS&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt; Description: &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;an illegal memory access was encountered&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt; Function:&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;wait&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt; Source Location: /home/gordon/Projects/oneAPICore/DPCPP/llvm/sycl/plugins/cuda/pi_cuda.cpp:449&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Chunheng.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 14:54:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1383550#M2126</guid>
      <dc:creator>zchmacchiato</dc:creator>
      <dc:date>2022-05-11T14:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1383620#M2128</link>
      <description>&lt;P&gt;Is it like a warning or the code block is not executing at all?&lt;/P&gt;
&lt;P&gt;This might be a bit addressing too.&lt;/P&gt;
&lt;P&gt;This question from Stackoverflow might help you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/27277365/unspecified-launch-failure-on-memcpy/27278218#27278218" target="_blank"&gt;https://stackoverflow.com/questions/27277365/unspecified-launch-failure-on-memcpy/27278218#27278218&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 20:19:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1383620#M2128</guid>
      <dc:creator>Abhishek81</dc:creator>
      <dc:date>2022-05-11T20:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1383781#M2134</link>
      <description>&lt;P&gt;Yes, but then it seems that the ua is not imported correctly, and it is nothing with my allocation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chunheng.&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 11:25:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1383781#M2134</guid>
      <dc:creator>zchmacchiato</dc:creator>
      <dc:date>2022-05-12T11:25:30Z</dc:date>
    </item>
    <item>
      <title>Re:DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1384120#M2145</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please provide us with the OS details and the GPU details on which you are running the code?&lt;/P&gt;&lt;P&gt;And also, could you please let us know which version of DPCPP and Intel oneAPI you are using?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 May 2022 11:31:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1384120#M2145</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-05-13T11:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1384131#M2146</link>
      <description>&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;I run my code on ThetaGPU.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;The system information is:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;#101-Ubuntu SMP Fri Oct 15 20:00:55 UTC 2021&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;The GPU I use is: Selected device:NVIDIA A100-SXM4-40GB&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;I am not quite sure about the DPC++ or OneAPI version, but it is for Ubuntu 18.04.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Chunheng.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 12:23:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1384131#M2146</guid>
      <dc:creator>zchmacchiato</dc:creator>
      <dc:date>2022-05-13T12:23:59Z</dc:date>
    </item>
    <item>
      <title>Re:DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1385254#M2172</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for providing the details.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel oneAPI DPC++ can be used only with Intel GEN9 and higher GPUs.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Here is the link for Intel® oneAPI DPC++/C++ Compiler System Requirements:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/system-requirements/intel-oneapi-dpcpp-system-requirements.html" rel="noopener noreferrer" target="_blank"&gt;https://www.intel.com/content/www/us/en/developer/articles/system-requirements/intel-oneapi-dpcpp-system-requirements.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you want to use the DPC++ compiler with NVIDIA GPU you can use the opensource DPC++ compiler.&lt;/P&gt;&lt;P&gt;Please refer to the below link regarding opensource oneAPI DPC++ compiler:&lt;/P&gt;&lt;P&gt;&lt;A href="https://intel.github.io/llvm-docs/GetStartedGuide.html" rel="noopener noreferrer" target="_blank"&gt;https://intel.github.io/llvm-docs/GetStartedGuide.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;These forums are intended to support the queries related to Intel Products. Here, we do not provide support to the NVidia GPU. You can also get support for non-Intel GPUs. Please find the link for raising the queries:&amp;nbsp;&lt;A href="https://github.com/intel/llvm/issues" rel="noopener noreferrer" target="_blank"&gt;https://github.com/intel/llvm/issues&lt;/A&gt;&lt;/P&gt;&lt;P&gt;So, can we go ahead and close this thread?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 18 May 2022 13:26:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1385254#M2172</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-05-18T13:26:08Z</dc:date>
    </item>
    <item>
      <title>Re:DPC++ access the the nonconst size buffer or access the shared memory pointer in class using MPI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1385594#M2178</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for accepting our solution. If you need any additional information, please post a new question as this thread will no longer be monitored by Intel.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 May 2022 12:06:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/DPC-access-the-the-nonconst-size-buffer-or-access-the-shared/m-p/1385594#M2178</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-05-19T12:06:34Z</dc:date>
    </item>
  </channel>
</rss>

