<?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: Error using DPCT on devcloud in Migrating to SYCL</title>
    <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1439127#M225</link>
    <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Thanks for reaching out to us.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Follow the below command to migrate the sample. Make sure the system has Nvidia CUDA SDK installed (in the default path).&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;dpct vector_addition.cu --cuda-include-path=&amp;lt;cuda-path&amp;gt;/include/ &lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;For more information refer to&amp;nbsp;&lt;/SPAN&gt;&lt;A style="font-size: 14px; font-family: sans-serif;" href="https://www.intel.com/content/www/us/en/developer/articles/technical/intel-dpcpp-compatibility-tool-best-practices.html" target="_blank" rel="noopener noreferrer"&gt;Intel® DPC++ Compatibility Tool Best Practices&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Hope the provided details will help you to resolve your issues.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Manjula&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Dec 2022 07:33:18 GMT</pubDate>
    <dc:creator>ManjulaC_Intel</dc:creator>
    <dc:date>2022-12-16T07:33:18Z</dc:date>
    <item>
      <title>Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1438799#M224</link>
      <description>&lt;P&gt;@s001-n058:~/vector_addition_cuda$ dpct vector_addition.cu NOTE: Could not auto-detect compilation database for file 'vector_addition.cu' in '/home/u171596/vector_addition_cuda' or any parent directory.&lt;BR /&gt;dpct exited with code: -32 (Error: Could not detect path to CUDA header files. Use --cuda-include-path to specify the correct path to the header files.)&lt;/P&gt;
&lt;P&gt;u171596@s001-n058:~/vector_addition_cuda$ cat vector_addition.cu &lt;BR /&gt;#include&amp;lt;/usr/include/linux/cuda.h&amp;gt;&lt;BR /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/P&gt;
&lt;P&gt;// Size of array&lt;BR /&gt;#define N 1048576&lt;/P&gt;
&lt;P&gt;// Kernel&lt;BR /&gt;__global__ void add_vectors(double *a, double *b, double *c)&lt;BR /&gt;{&lt;BR /&gt;int id = blockDim.x * blockIdx.x + threadIdx.x;&lt;BR /&gt;if(id &amp;lt; N) c[id] = a[id] + b[id];&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;// Main program&lt;BR /&gt;int main()&lt;BR /&gt;{&lt;BR /&gt;// Number of bytes to allocate for N doubles&lt;BR /&gt;size_t bytes = N*sizeof(double);&lt;/P&gt;
&lt;P&gt;// Allocate memory for arrays A, B, and C on host&lt;BR /&gt;double *A = (double*)malloc(bytes);&lt;BR /&gt;double *B = (double*)malloc(bytes);&lt;BR /&gt;double *C = (double*)malloc(bytes);&lt;/P&gt;
&lt;P&gt;// Allocate memory for arrays d_A, d_B, and d_C on device&lt;BR /&gt;double *d_A, *d_B, *d_C;&lt;BR /&gt;cudaMalloc(&amp;amp;d_A, bytes);&lt;BR /&gt;cudaMalloc(&amp;amp;d_B, bytes);&lt;BR /&gt;cudaMalloc(&amp;amp;d_C, bytes);&lt;/P&gt;
&lt;P&gt;// Fill host arrays A and B&lt;BR /&gt;for(int i=0; i&amp;lt;N; i++)&lt;BR /&gt;{&lt;BR /&gt;A[i] = 1.0;&lt;BR /&gt;B[i] = 2.0;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;// Copy data from host arrays A and B to device arrays d_A and d_B&lt;BR /&gt;cudaMemcpy(d_A, A, bytes, cudaMemcpyHostToDevice);&lt;BR /&gt;cudaMemcpy(d_B, B, bytes, cudaMemcpyHostToDevice);&lt;/P&gt;
&lt;P&gt;// Set execution configuration parameters&lt;BR /&gt;// thr_per_blk: number of CUDA threads per grid block&lt;BR /&gt;// blk_in_grid: number of blocks in grid&lt;BR /&gt;int thr_per_blk = 256;&lt;BR /&gt;int blk_in_grid = ceil( float(N) / thr_per_blk );&lt;/P&gt;
&lt;P&gt;// Launch kernel&lt;BR /&gt;add_vectors&amp;lt;&amp;lt;&amp;lt; blk_in_grid, thr_per_blk &amp;gt;&amp;gt;&amp;gt;(d_A, d_B, d_C);&lt;/P&gt;
&lt;P&gt;// Copy data from device array d_C to host array C&lt;BR /&gt;cudaMemcpy(C, d_C, bytes, cudaMemcpyDeviceToHost);&lt;/P&gt;
&lt;P&gt;// Verify results&lt;BR /&gt;double tolerance = 1.0e-14;&lt;BR /&gt;for(int i=0; i&amp;lt;N; i++)&lt;BR /&gt;{&lt;BR /&gt;if( fabs(C[i] - 3.0) &amp;gt; tolerance)&lt;BR /&gt;{ &lt;BR /&gt;printf("\nError: value of C[%d] = %d instead of 3.0\n\n", i, C[i]);&lt;BR /&gt;exit(1);&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;// Free CPU memory&lt;BR /&gt;free(A);&lt;BR /&gt;free(B);&lt;BR /&gt;free(C);&lt;/P&gt;
&lt;P&gt;// Free GPU memory&lt;BR /&gt;cudaFree(d_A);&lt;BR /&gt;cudaFree(d_B);&lt;BR /&gt;cudaFree(d_C);&lt;/P&gt;
&lt;P&gt;printf("\n---------------------------\n");&lt;BR /&gt;printf("__SUCCESS__\n");&lt;BR /&gt;printf("---------------------------\n");&lt;BR /&gt;printf("N = %d\n", N);&lt;BR /&gt;printf("Threads Per Block = %d\n", thr_per_blk);&lt;BR /&gt;printf("Blocks In Grid = %d\n", blk_in_grid);&lt;BR /&gt;printf("---------------------------\n\n");&lt;/P&gt;
&lt;P&gt;return 0;&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 06:35:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1438799#M224</guid>
      <dc:creator>Garvita</dc:creator>
      <dc:date>2022-12-15T06:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1439127#M225</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Thanks for reaching out to us.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Follow the below command to migrate the sample. Make sure the system has Nvidia CUDA SDK installed (in the default path).&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;dpct vector_addition.cu --cuda-include-path=&amp;lt;cuda-path&amp;gt;/include/ &lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;For more information refer to&amp;nbsp;&lt;/SPAN&gt;&lt;A style="font-size: 14px; font-family: sans-serif;" href="https://www.intel.com/content/www/us/en/developer/articles/technical/intel-dpcpp-compatibility-tool-best-practices.html" target="_blank" rel="noopener noreferrer"&gt;Intel® DPC++ Compatibility Tool Best Practices&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Hope the provided details will help you to resolve your issues.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;Manjula&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 07:33:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1439127#M225</guid>
      <dc:creator>ManjulaC_Intel</dc:creator>
      <dc:date>2022-12-16T07:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1440364#M226</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;A gentle reminder to respond.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Manjula&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2022 06:36:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1440364#M226</guid>
      <dc:creator>ManjulaC_Intel</dc:creator>
      <dc:date>2022-12-21T06:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1441166#M227</link>
      <description>&lt;P&gt;Thank you Manjula for response.&lt;/P&gt;
&lt;P&gt;I am using Intel devcloud environment for migration. Could you please suggest how to install&amp;nbsp;&lt;SPAN&gt;Nvidia CUDA SDK&amp;nbsp;?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Dec 2022 09:50:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1441166#M227</guid>
      <dc:creator>Garvita</dc:creator>
      <dc:date>2022-12-23T09:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1441616#M228</link>
      <description>&lt;P&gt;Am I even allowed to install on Intel devcloud environment?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 06:37:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1441616#M228</guid>
      <dc:creator>Garvita</dc:creator>
      <dc:date>2022-12-26T06:37:41Z</dc:date>
    </item>
    <item>
      <title>Re:Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1441888#M229</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Can you try installing the CUDA Toolkit from the below link, by selecting the appropriate OS, Distribution and Version?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;&lt;A href="https://developer.nvidia.com/cuda-11.0-download-archive?target_os=Linux&amp;amp;target_arch=x86_64&amp;amp;target_distro=Ubuntu&amp;amp;target_version=2004&amp;amp;target_type=debnetwork" target="_blank"&gt;https://developer.nvidia.com/cuda-11.0-download-archive?target_os=Linux&amp;amp;target_arch=x86_64&amp;amp;target_distro=Ubuntu&amp;amp;target_version=2004&amp;amp;target_type=debnetwork&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;DPCT only needs CUDA headers from the supported versions. So, if you could manage to get headers from these supported versions and provide its path to the --cuda-include-path flag it could work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;As per the latest oneAPI beta08 DPCT requirements, the only supported CUDA versions are:&amp;nbsp;8.0, 9.x, 10.1, 10.2, 11.0 ~11.8.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Link:&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/system-requirements/intel-dpc-compatibility-tool-system-requirements.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/developer/articles/system-requirements/intel-dpc-compatibility-tool-system-requirements.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Manjula&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Dec 2022 09:08:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1441888#M229</guid>
      <dc:creator>ManjulaC_Intel</dc:creator>
      <dc:date>2022-12-27T09:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1443444#M230</link>
      <description>&lt;P&gt;Hello Manjula,&lt;/P&gt;
&lt;P&gt;I am working on Intel devcloud oneAPI environment. I am not sure how to install CUDA toolkit here.&lt;/P&gt;
&lt;P&gt;with reference to the thread below, I am sure if it is possible/recommended. Please suggest.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Garvita_1-1672733674054.png" style="width: 577px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/36764iD8B733AB940CBA9D/image-dimensions/577x204/is-moderation-mode/true?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="577" height="204" role="button" title="Garvita_1-1672733674054.png" alt="Garvita_1-1672733674054.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Garvita&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2023 08:16:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1443444#M230</guid>
      <dc:creator>Garvita</dc:creator>
      <dc:date>2023-01-03T08:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1444131#M231</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;As per my previous response, DPCT only needs CUDA headers from the supported versions. So, if you could manage to get headers from these supported versions and provide its path to the --cuda-include-path flag it could work.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Follow the below link for CUDA Toolkit installation by selecting the appropriate OS, Distribution and Version.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;A href="https://developer.nvidia.com/cuda-11.0-download-archive?target_os=Linux&amp;amp;target_arch=x86_64&amp;amp;target_di" target="_blank" rel="noopener"&gt;https://developer.nvidia.com/cuda-11.0-download-archive?target_os=Linux&amp;amp;target_arch=x86_64&amp;amp;target_di&lt;/A&gt;...&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Attached the image below which has CUDA headers in Devcloud for your reference.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ManjulaC_Intel_0-1672920998544.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/36813i59A8DE1F591C3FBD/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="ManjulaC_Intel_0-1672920998544.png" alt="ManjulaC_Intel_0-1672920998544.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Manjula&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 12:17:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1444131#M231</guid>
      <dc:creator>ManjulaC_Intel</dc:creator>
      <dc:date>2023-01-05T12:17:51Z</dc:date>
    </item>
    <item>
      <title>Re:Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1446953#M232</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: sans-serif; font-size: 14px;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif; font-size: 14px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif; font-size: 14px;"&gt;A gentle reminder to respond.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif; font-size: 14px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif; font-size: 14px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif; font-size: 14px;"&gt;Manjula&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Jan 2023 03:17:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1446953#M232</guid>
      <dc:creator>ManjulaC_Intel</dc:creator>
      <dc:date>2023-01-16T03:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1446985#M233</link>
      <description>&lt;P&gt;I am still looking the way to copy headers in devcloud environment since "scp" is also not working. Please refer the screenshots below. Once I an able to copy files, I might copy headers. Any Suggestions please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Garvita_0-1673847449463.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/37099iE4FCA86CAC314ECE/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="Garvita_0-1673847449463.png" alt="Garvita_0-1673847449463.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Garvita_1-1673847512213.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/37100iBB787D4DF03223E6/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="Garvita_1-1673847512213.png" alt="Garvita_1-1673847512213.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 05:46:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1446985#M233</guid>
      <dc:creator>Garvita</dc:creator>
      <dc:date>2023-01-16T05:46:47Z</dc:date>
    </item>
    <item>
      <title>Re:Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1451312#M234</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Can you try installing the CUDA Headers in Intel Devcloud directly using the below link without using "scp".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Follow the below link for CUDA Toolkit installation by selecting the appropriate OS, Distribution and Version.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;&lt;A href="https://developer.nvidia.com/cuda-11.0-download-archive?target_os=Linux&amp;amp;target_arch=x86_64&amp;amp;target_di" target="_blank"&gt;https://developer.nvidia.com/cuda-11.0-download-archive?target_os=Linux&amp;amp;target_arch=x86_64&amp;amp;target_di&lt;/A&gt;...&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Manjula&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jan 2023 10:34:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1451312#M234</guid>
      <dc:creator>ManjulaC_Intel</dc:creator>
      <dc:date>2023-01-30T10:34:17Z</dc:date>
    </item>
    <item>
      <title>Re:Error using DPCT on devcloud</title>
      <link>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1454010#M235</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Since your initial query is resolved. Please post any additional questions in a new thread. This thread will be no longer monitored by Intel.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Manjula&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Feb 2023 06:32:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Migrating-to-SYCL/Error-using-DPCT-on-devcloud/m-p/1454010#M235</guid>
      <dc:creator>ManjulaC_Intel</dc:creator>
      <dc:date>2023-02-07T06:32:25Z</dc:date>
    </item>
  </channel>
</rss>

