<?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: Correct way to compiling DPC++/MPI code in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1436484#M10113</link>
    <description>&lt;P&gt;Dear Jaideep,&lt;/P&gt;
&lt;P&gt;Thanks for looking into this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was able to make a little bit progress by manually setting I_MPI_CXX, i.e.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$ export I_MPI_CXX=dpcpp 
$ mpiicpc -fsycl -std=c++17 -lsycl pi_mpi_dpcpp.cpp -o pi_mpi.x&lt;/LI-CODE&gt;
&lt;P&gt;Compilation succeeded, and correct result was observed with CPU backend:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$ SYCL_PI_TRACE=1 SYCL_DEVICE_FILTER=opencl:cpu mpirun -np 2 ./pi_mpi.x

SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL
SYCL_PI_TRACE[all]:   device: 11th Gen Intel(R) Core(TM) i9-11900KB @ 3.30GHz
SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL
SYCL_PI_TRACE[all]:   device: 11th Gen Intel(R) Core(TM) i9-11900KB @ 3.30GHz
Rank? 0 of 2 runs on: s019-n002, uses device: 11th Gen Intel(R) Core(TM) i9-11900KB @ 3.30GHz
Rank? 1 of 2 runs on: s019-n002, uses device: 11th Gen Intel(R) Core(TM) i9-11900KB @ 3.30GHz
---&amp;gt; pi= 3.14159&lt;/LI-CODE&gt;
&lt;P&gt;For GPU backend, an exception was caught.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;YCL_PI_TRACE[basic]: Plugin found and successfully loaded: libpi_opencl.soSYCL_PI_TRACE[basic]: Plugin found and successfully loaded: libpi_opencl.so

SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL HD Graphics
SYCL_PI_TRACE[all]:   device: Intel(R) UHD Graphics [0x9a60]
Rank? 0 of 2 runs on: s019-n002, uses device: Intel(R) UHD Graphics [0x9a60]
Failure
SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL HD Graphics
SYCL_PI_TRACE[all]:   device: Intel(R) UHD Graphics [0x9a60]
Rank? 1 of 2 runs on: s019-n002, uses device: Intel(R) UHD Graphics [0x9a60]
Failure
---&amp;gt; pi= 0&lt;/LI-CODE&gt;
&lt;P&gt;Unfortunately, the exception does not provides much information but the 'Failure' message. I re-factor the code by removing try/catch clause. Please refer to the attached file. The exact error message is: &lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$ SYCL_PI_TRACE=1 SYCL_DEVICE_FILTER=opencl:gpu mpirun -np 2 pi_mpi.x
terminate called after throwing an instance of 'cl::sycl::compile_program_error'
terminate called after throwing an instance of 'cl::sycl::compile_program_error'
  what():  The program was built for 1 devices
Build program log for 'Intel(R) UHD Graphics [0x9a60]':
 -6 (CL_OUT_OF_HOST_MEMORY)
  what():  The program was built for 1 devices
Build program log for 'Intel(R) UHD Graphics [0x9a60]':
 -6 (CL_OUT_OF_HOST_MEMORY)

===================================================================================
=   BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
=   PID 495706 RUNNING AT s019-n002
=   EXIT CODE: 1
=   CLEANING UP REMAINING PROCESSES
=   YOU CAN IGNORE THE BELOW CLEANUP MESSAGES
===================================================================================

===================================================================================
=   BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
=   PID 495706 RUNNING AT s019-n002
=   EXIT CODE: 1
=   CLEANING UP REMAINING PROCESSES
=   YOU CAN IGNORE THE BELOW CLEANUP MESSAGES
===================================================================================
   Intel(R) MPI Library troubleshooting guide:
      https://software.intel.com/node/561764
===================================================================================&lt;/LI-CODE&gt;
&lt;P&gt;I only have access to gen9/gen11 queue from Intel DevCloud and cannot validate the code elsewhere.&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Wed, 07 Dec 2022 15:05:20 GMT</pubDate>
    <dc:creator>Viet-Duc</dc:creator>
    <dc:date>2022-12-07T15:05:20Z</dc:date>
    <item>
      <title>Correct way to compiling DPC++/MPI code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1436119#M10109</link>
      <description>&lt;P&gt;Dear Support Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am compiling a hybrid DPC++/MPI taken from oneAPI sample codes.&lt;/P&gt;
&lt;P&gt;I also attached the file for reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you let me know what is the correct way to compile and run the code ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. According to the sample code itself:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mpiicpc -cxx=dpcpp pi_mpi_dpcpp.cpp -o pi_mpi.x&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Compilation was successful. Yet, the following error was generated when running: &lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$ qsub -I -l nodes=1:gen9:ppn=2
$ mpirun -np 2 ./pi_mpi.x

[0] MPI startup(): I_MPI_PM environment variable is not supported.
[0] MPI startup(): Similar variables:
         I_MPI_PIN
         I_MPI_SHM
         I_MPI_PLATFORM
         I_MPI_PMI
         I_MPI_PMI_LIBRARY
[0] MPI startup(): I_MPI_RANK_CMD environment variable is not supported.
[0] MPI startup(): I_MPI_CMD environment variable is not supported.
[0] MPI startup(): Similar variables:
         I_MPI_CC
[0] MPI startup(): To check the list of supported variables, use the impi_info utility or refer to https://software.intel.com/en-us/mpi-library/documentation/get-started.
Abort was called at 39 line in file:
/opt/src/opencl/shared/source/built_ins/built_ins.cpp
Abort was called at 39 line in file:
/opt/src/opencl/shared/source/built_ins/built_ins.cpp

===================================================================================
=   BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
=   PID 241139 RUNNING AT s001-n141
=   EXIT CODE: 6
=   CLEANING UP REMAINING PROCESSES
=   YOU CAN IGNORE THE BELOW CLEANUP MESSAGES
===================================================================================
   Intel(R) MPI Library troubleshooting guide:
      https://software.intel.com/node/561764
===================================================================================&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. According to github: (&lt;A href="https://github.com/oneapi-src/oneAPI-samples/tree/master/DirectProgramming/DPC%2B%2B/ParallelPatterns/dpc_reduce" target="_blank"&gt;https://github.com/oneapi-src/oneAPI-samples/tree/master/DirectProgramming/DPC%2B%2B/ParallelPatterns/dpc_reduce&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;The correct compilation should be:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$ mpiicpc -O3 -fsycl -std=c++17 -fsycl-unnamed-lambda pi_mpi_dpcpp.cpp&lt;/LI-CODE&gt;
&lt;P&gt;Compilation failed with the following error:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;icpc: error #10408: The Intel(R) oneAPI DPC++ compiler cannot be found in the expected location.  Please check your installation or documentation for more information.
/glob/development-tools/versions/oneapi/2022.3.1/oneapi/compiler/2022.2.1/linux/bin/clang++: No such file or directory&lt;/LI-CODE&gt;
&lt;P&gt;Perhaps the path to clang++ compiler was not correctly set.&amp;nbsp; Please kindly advise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 14:56:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1436119#M10109</guid>
      <dc:creator>Viet-Duc</dc:creator>
      <dc:date>2022-12-06T14:56:52Z</dc:date>
    </item>
    <item>
      <title>Re:Correct way to compiling DPC++/MPI code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1436438#M10112</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for posting in Intel communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We were able to reproduce your issue from our end and working on this internally. We will get back to you with an update.&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>Wed, 07 Dec 2022 10:38:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1436438#M10112</guid>
      <dc:creator>JaideepK_Intel</dc:creator>
      <dc:date>2022-12-07T10:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Correct way to compiling DPC++/MPI code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1436484#M10113</link>
      <description>&lt;P&gt;Dear Jaideep,&lt;/P&gt;
&lt;P&gt;Thanks for looking into this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was able to make a little bit progress by manually setting I_MPI_CXX, i.e.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$ export I_MPI_CXX=dpcpp 
$ mpiicpc -fsycl -std=c++17 -lsycl pi_mpi_dpcpp.cpp -o pi_mpi.x&lt;/LI-CODE&gt;
&lt;P&gt;Compilation succeeded, and correct result was observed with CPU backend:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$ SYCL_PI_TRACE=1 SYCL_DEVICE_FILTER=opencl:cpu mpirun -np 2 ./pi_mpi.x

SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL
SYCL_PI_TRACE[all]:   device: 11th Gen Intel(R) Core(TM) i9-11900KB @ 3.30GHz
SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL
SYCL_PI_TRACE[all]:   device: 11th Gen Intel(R) Core(TM) i9-11900KB @ 3.30GHz
Rank? 0 of 2 runs on: s019-n002, uses device: 11th Gen Intel(R) Core(TM) i9-11900KB @ 3.30GHz
Rank? 1 of 2 runs on: s019-n002, uses device: 11th Gen Intel(R) Core(TM) i9-11900KB @ 3.30GHz
---&amp;gt; pi= 3.14159&lt;/LI-CODE&gt;
&lt;P&gt;For GPU backend, an exception was caught.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;YCL_PI_TRACE[basic]: Plugin found and successfully loaded: libpi_opencl.soSYCL_PI_TRACE[basic]: Plugin found and successfully loaded: libpi_opencl.so

SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL HD Graphics
SYCL_PI_TRACE[all]:   device: Intel(R) UHD Graphics [0x9a60]
Rank? 0 of 2 runs on: s019-n002, uses device: Intel(R) UHD Graphics [0x9a60]
Failure
SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL HD Graphics
SYCL_PI_TRACE[all]:   device: Intel(R) UHD Graphics [0x9a60]
Rank? 1 of 2 runs on: s019-n002, uses device: Intel(R) UHD Graphics [0x9a60]
Failure
---&amp;gt; pi= 0&lt;/LI-CODE&gt;
&lt;P&gt;Unfortunately, the exception does not provides much information but the 'Failure' message. I re-factor the code by removing try/catch clause. Please refer to the attached file. The exact error message is: &lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$ SYCL_PI_TRACE=1 SYCL_DEVICE_FILTER=opencl:gpu mpirun -np 2 pi_mpi.x
terminate called after throwing an instance of 'cl::sycl::compile_program_error'
terminate called after throwing an instance of 'cl::sycl::compile_program_error'
  what():  The program was built for 1 devices
Build program log for 'Intel(R) UHD Graphics [0x9a60]':
 -6 (CL_OUT_OF_HOST_MEMORY)
  what():  The program was built for 1 devices
Build program log for 'Intel(R) UHD Graphics [0x9a60]':
 -6 (CL_OUT_OF_HOST_MEMORY)

===================================================================================
=   BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
=   PID 495706 RUNNING AT s019-n002
=   EXIT CODE: 1
=   CLEANING UP REMAINING PROCESSES
=   YOU CAN IGNORE THE BELOW CLEANUP MESSAGES
===================================================================================

===================================================================================
=   BAD TERMINATION OF ONE OF YOUR APPLICATION PROCESSES
=   PID 495706 RUNNING AT s019-n002
=   EXIT CODE: 1
=   CLEANING UP REMAINING PROCESSES
=   YOU CAN IGNORE THE BELOW CLEANUP MESSAGES
===================================================================================
   Intel(R) MPI Library troubleshooting guide:
      https://software.intel.com/node/561764
===================================================================================&lt;/LI-CODE&gt;
&lt;P&gt;I only have access to gen9/gen11 queue from Intel DevCloud and cannot validate the code elsewhere.&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 15:05:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1436484#M10113</guid>
      <dc:creator>Viet-Duc</dc:creator>
      <dc:date>2022-12-07T15:05:20Z</dc:date>
    </item>
    <item>
      <title>Re:Correct way to compiling DPC++/MPI code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1440838#M10182</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay, we are working on this internally. We will get back to you with an update.&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, 22 Dec 2022 11:43:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1440838#M10182</guid>
      <dc:creator>JaideepK_Intel</dc:creator>
      <dc:date>2022-12-22T11:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Correct way to compiling DPC++/MPI code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1454911#M10365</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for the delay.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am able to build and run on a devcloud gpu node with the below commands. screenshot attached of mpirun using the gpu.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;&lt;STRONG&gt;Login to GPU node with the below command&lt;/STRONG&gt;:&lt;/EM&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;qsub -I -l nodes=1:gen9:ppn=2&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&amp;gt;&amp;gt;&lt;STRONG style="color: #252525;"&gt;&lt;EM style="color: #252525;"&gt;After logging into the compute node, please run the below commands&lt;/EM&gt;&lt;/STRONG&gt;:&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;export I_MPI_CXX="icpx -fsycl"&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;mpiicpc -L /glob/development-tools/versions/oneapi/2023.0.1/oneapi/tbb/2021.8.0/lib/intel64/gcc4.8 -fsycl -std=c++17 -lsycl -ltbb ./&amp;lt;input_file&amp;gt; -o a.out&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JaideepK_Intel_0-1675946142201.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/37934i23AA96A72DFEC914/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="JaideepK_Intel_0-1675946142201.png" alt="JaideepK_Intel_0-1675946142201.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SYCL_PI_TRACE=1 SYCL_DEVICE_FILTER=opencl:gpu mpirun -np 2 ./a.out&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JaideepK_Intel_1-1675946166851.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/37935iF438F6913A79E545/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="JaideepK_Intel_1-1675946166851.png" alt="JaideepK_Intel_1-1675946166851.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this resolves your issue, make sure to accept this as a solution. This would help others with similar issue. Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jaideep&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 12:37:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1454911#M10365</guid>
      <dc:creator>JaideepK_Intel</dc:creator>
      <dc:date>2023-02-09T12:37:44Z</dc:date>
    </item>
    <item>
      <title>Re:Correct way to compiling DPC++/MPI code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1456033#M10382</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If this resolves your issue, make sure to accept this as a solution. This would help others with similar issue. Thank you!&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>Wed, 15 Feb 2023 04:59:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1456033#M10382</guid>
      <dc:creator>JaideepK_Intel</dc:creator>
      <dc:date>2023-02-15T04:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Correct way to compiling DPC++/MPI code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1456377#M10391</link>
      <description>&lt;P&gt;Hi Jaideep,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for belated reply.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I confirm that the code is now working as expected by following your suggestion. The solution has been accepted.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for getting back at the issue even after a long time has passed.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 00:56:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1456377#M10391</guid>
      <dc:creator>Viet-Duc</dc:creator>
      <dc:date>2023-02-16T00:56:12Z</dc:date>
    </item>
    <item>
      <title>Re:Correct way to compiling DPC++/MPI code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1456491#M10392</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Good day to you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Glad to know that your issue is resolved. 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;Have a great day ahead.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jaideep&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2023 09:40:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Correct-way-to-compiling-DPC-MPI-code/m-p/1456491#M10392</guid>
      <dc:creator>JaideepK_Intel</dc:creator>
      <dc:date>2023-02-16T09:40:13Z</dc:date>
    </item>
  </channel>
</rss>

