<?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: Unable to work with 4 Dimensional data for batch2d program in dpc++ in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1407130#M2422</link>
    <description>&lt;P&gt;&lt;SPAN class="TextRun SCXW21623023 BCX0" data-contrast="auto"&gt;&lt;SPAN class="NormalTextRun SCXW21623023 BCX0"&gt;Has your issue been resolved? If I don't hear from you within 5 business days, I will assume your support request is resolved. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Aug 2022 15:56:16 GMT</pubDate>
    <dc:creator>Ethan_F_Intel</dc:creator>
    <dc:date>2022-08-09T15:56:16Z</dc:date>
    <item>
      <title>Unable to work with 4 Dimensional data for batch2d program in dpc++</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1402988#M2391</link>
      <description>&lt;P&gt;Hello team,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was trying to run my codes parallelly using dpcpp, but I am facing some issues, my input data is 4 dimension but while using buffer it is not accepting 4D data and throwing following error,&amp;nbsp; static_assert failed due to requirement '4 &amp;gt;= 1 &amp;amp;&amp;amp; 4 &amp;lt;= 3' "range can only be 1, 2, or 3 dimensional." . So, Do you have any alternative to work on 4D data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;BR /&gt;Pranathi R&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2022 06:49:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1402988#M2391</guid>
      <dc:creator>Pranathi_R</dc:creator>
      <dc:date>2022-07-25T06:49:21Z</dc:date>
    </item>
    <item>
      <title>Re:Unable to work with 4 Dimensional data for batch2d program in dpc++</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1404182#M2400</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please provide us with a sample reproducer and compiler version?&lt;/P&gt;&lt;P&gt;Also, please provide the OS details so that we can try it from our end.&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;Noorjahan.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Jul 2022 12:03:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1404182#M2400</guid>
      <dc:creator>NoorjahanSk_Intel</dc:creator>
      <dc:date>2022-07-28T12:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to work with 4 Dimensional data for batch2d program in dpc++</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1406094#M2416</link>
      <description>&lt;P&gt;There are a number of ways one can process 4 dimensional data even despite buffers being limited to three dimensions.&lt;/P&gt;
&lt;P&gt;It all is a matter of understanding what you are trying to do, and designing an algorithm which achieves this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, you could store all your data in a 1 dimensional array, but index it in a way to simulate four dimensions.&lt;/P&gt;
&lt;P&gt;More details on that here:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/29142417/4d-position-from-1d-index" target="_blank" rel="noopener"&gt;4d-position-from-1d-index&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another way is to store the data in a 1D list of 4D tuples.&lt;/P&gt;
&lt;P&gt;I have provided an example of this using DPC++ in the attached file.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2022 19:50:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1406094#M2416</guid>
      <dc:creator>Ethan_F_Intel</dc:creator>
      <dc:date>2022-08-04T19:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to work with 4 Dimensional data for batch2d program in dpc++</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1407130#M2422</link>
      <description>&lt;P&gt;&lt;SPAN class="TextRun SCXW21623023 BCX0" data-contrast="auto"&gt;&lt;SPAN class="NormalTextRun SCXW21623023 BCX0"&gt;Has your issue been resolved? If I don't hear from you within 5 business days, I will assume your support request is resolved. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 15:56:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1407130#M2422</guid>
      <dc:creator>Ethan_F_Intel</dc:creator>
      <dc:date>2022-08-09T15:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to work with 4 Dimensional data for batch2d program in dpc++</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1408847#M2439</link>
      <description>&lt;P&gt;&lt;SPAN class="TextRun SCXW130920802 BCX0" data-contrast="auto"&gt;&lt;SPAN class="NormalTextRun SCXW130920802 BCX0"&gt;After case closure, you will receive a survey email. We &lt;/SPAN&gt;&lt;SPAN class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW130920802 BCX0"&gt;appreciate&lt;/SPAN&gt;&lt;SPAN class="NormalTextRun SCXW130920802 BCX0"&gt; it if you &lt;/SPAN&gt;&lt;SPAN class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW130920802 BCX0"&gt;can&lt;/SPAN&gt;&lt;SPAN class="NormalTextRun SCXW130920802 BCX0"&gt; complete this survey regarding the support you received.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="EOP SCXW130920802 BCX0" data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2022 14:09:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Unable-to-work-with-4-Dimensional-data-for-batch2d-program-in/m-p/1408847#M2439</guid>
      <dc:creator>Ethan_F_Intel</dc:creator>
      <dc:date>2022-08-17T14:09:02Z</dc:date>
    </item>
  </channel>
</rss>

