<?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:How oneAPI support parallel tasks on CPU? in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1370447#M1978</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have not heard back from you, so we will close this inquiry now. 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 &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Noorjahan.&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 21 Mar 2022 05:24:24 GMT</pubDate>
    <dc:creator>NoorjahanSk_Intel</dc:creator>
    <dc:date>2022-03-21T05:24:24Z</dc:date>
    <item>
      <title>How oneAPI support parallel tasks on CPU?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1365943#M1932</link>
      <description>&lt;P&gt;The task (kernel) is in SPMD format.&lt;/P&gt;
&lt;P&gt;As I know for some OpenCL implementation, they execute SPMD kernel on CPU (MPMD architecture) by wrapping a whole block/work-group into a function, and using thread-pool to ask CPU cores executes these functions.&lt;/P&gt;
&lt;P&gt;For example, for the given kernel:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;a[tid]=b[tid];&lt;/LI-CODE&gt;
&lt;P&gt;will be converted to&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;for(int tid = 0; tid&amp;lt;block_size;tid++)

    a[tid]=b[tid];&lt;/LI-CODE&gt;
&lt;P&gt;Does oneAPI do the same transformation?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 21:54:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1365943#M1932</guid>
      <dc:creator>Roin</dc:creator>
      <dc:date>2022-03-04T21:54:53Z</dc:date>
    </item>
    <item>
      <title>Re:How oneAPI support parallel tasks on CPU?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1366335#M1940</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;DPC++ includes SYCL, which is a higher-level abstraction layer that builds on OpenCL.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&amp;gt;&amp;gt;Does oneAPI do the same transformation?&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Yes, OneAPI also follows the same transformation.&lt;/P&gt;&lt;P&gt;DPC++ follows the SPMD format while writing kernels.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please refer to Data-Parallel C++ by James Reinders for more details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Pdf page no:124 or Textbook page no:99&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please refer to the below link to find DPC++ oneAPI sample that follows SPMD format.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/oneapi-src/oneAPI-samples" target="_blank"&gt;https://github.com/oneapi-src/oneAPI-samples&lt;/A&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;Noorjahan&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Mar 2022 11:32:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1366335#M1940</guid>
      <dc:creator>NoorjahanSk_Intel</dc:creator>
      <dc:date>2022-03-07T11:32:42Z</dc:date>
    </item>
    <item>
      <title>Re:How oneAPI support parallel tasks on CPU?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1368529#M1959</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We haven't heard back from you. Could you please provide an update on your issue?&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>Mon, 14 Mar 2022 11:06:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1368529#M1959</guid>
      <dc:creator>NoorjahanSk_Intel</dc:creator>
      <dc:date>2022-03-14T11:06:14Z</dc:date>
    </item>
    <item>
      <title>Re:How oneAPI support parallel tasks on CPU?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1370447#M1978</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have not heard back from you, so we will close this inquiry now. 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 &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Noorjahan.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Mar 2022 05:24:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/How-oneAPI-support-parallel-tasks-on-CPU/m-p/1370447#M1978</guid>
      <dc:creator>NoorjahanSk_Intel</dc:creator>
      <dc:date>2022-03-21T05:24:24Z</dc:date>
    </item>
  </channel>
</rss>

