<?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: Setting up Visual Studio for C++ MPI in WSL2 in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368655#M9309</link>
    <description>&lt;P&gt;I am still working on this, and now I can launch the MPI program without problem.&lt;/P&gt;
&lt;P&gt;I believe the problem was using the basic gdb instead of the gdb distributed with OneAPI.&lt;/P&gt;
&lt;P&gt;To make Visual Studio use gdb-oneapi, I added a debug configuration to my project.&amp;nbsp; Visual Studio keeps these in launch.vs.json.&amp;nbsp; The new configuration sources setvars.sh, then starts the OneAPI debugger.&amp;nbsp; The SEGFAULT is no more, and I can do all the normal debugging actions (single-stepping, inspecting vars, etc.)&lt;/P&gt;
&lt;P&gt;Here is the configuration:&lt;/P&gt;
&lt;P&gt;{&lt;BR /&gt;"version": "0.2.1",&lt;BR /&gt;"defaults": {},&lt;BR /&gt;"configurations": [&lt;BR /&gt;{&lt;BR /&gt;"type": "cppgdb",&lt;BR /&gt;"name": "testMPI",&lt;BR /&gt;"project": "CMakeLists.txt",&lt;BR /&gt;"projectTarget": "testMPI",&lt;BR /&gt;"debuggerConfiguration": "gdb",&lt;BR /&gt;"gdbPath": "/opt/intel/oneapi/debugger/latest/gdb/intel64/bin/gdb-oneapi",&lt;BR /&gt;"preDebugCommand": "source /opt/intel/oneapi/setvars.sh",&lt;BR /&gt;"args": [],&lt;BR /&gt;"env": {}&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The last thing that is still missing is starting the program with mpiexec and setting the number of processors and threads.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Mar 2022 18:35:54 GMT</pubDate>
    <dc:creator>flgilbert</dc:creator>
    <dc:date>2022-03-14T18:35:54Z</dc:date>
    <item>
      <title>Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368034#M9305</link>
      <description>&lt;P&gt;I know Intel does not support OneAPI on Windows Subsystem for Linux, but I almost managed to setup Visual Studio 2022 to develop with MPI. The only remaining thing is the debugging, which should work but I get a segmentation error on MPI::Init()&lt;/P&gt;
&lt;P&gt;Here's the recipe so far:&lt;/P&gt;
&lt;P&gt;1) setup Visual Studio for WSL2 as instructed by Microsoft &lt;A href="https://docs.microsoft.com/en-us/cpp/linux/download-install-and-setup-the-linux-development-workload" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/cpp/linux/download-install-and-setup-the-linux-development-workload&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2) Install OneAPI base and HPC toolkits on the WSL instance (mine uses Ubuntu 20.04LTS)&lt;/P&gt;
&lt;P&gt;3) setup a CMAKE project in visual studio&lt;BR /&gt;4) In CMakeLists.txt, add the MPI directives:&lt;BR /&gt;find_package(MPI REQUIRED)&lt;BR /&gt;target_link_libraries(myTestProgram MPI::MPI_CXX)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;5) in CMakePresets.json, modify the "Linux Debug" preset by adding the following settings:&lt;BR /&gt;"environment": {&lt;BR /&gt;"PATH": "$penv{PATH}:/opt/intel/oneapi/compiler/latest/linux/bin/intel64/:/opt/intel/oneapi/mpi/latest/bin/",&lt;BR /&gt;"I_MPI_ROOT": "/opt/intel/oneapi/mpi/latest"&lt;BR /&gt;}&lt;BR /&gt;And replacing the cacheVariables with this:&lt;BR /&gt;&lt;BR /&gt;"cacheVariables": {&lt;BR /&gt;"CMAKE_BUILD_TYPE": "Debug",&lt;BR /&gt;"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",&lt;BR /&gt;"CMAKE_C_COMPILER": "icc", // Optional: use the Intel compiler.&lt;BR /&gt;"CMAKE_CXX_COMPILER": "icpc" //Optional: use the Intel compiler.&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;With these steps, Visual Studio compiles the example test.cpp without errors and Intellisense "sees" the MPI header file.&lt;/P&gt;
&lt;P&gt;When I use the WSL2 shell to run the resulting executable, I get no errors and it works as expected. I also can use gdb on it this way without problem.&lt;/P&gt;
&lt;P&gt;The problem comes when I try to start the debugging session in Visual Studio: I systematically get a Segmentation fault on the MPI::Init line.&lt;/P&gt;
&lt;P&gt;Did anybody make this work? What did I miss?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2022 16:35:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368034#M9305</guid>
      <dc:creator>flgilbert</dc:creator>
      <dc:date>2022-03-11T16:35:08Z</dc:date>
    </item>
    <item>
      <title>Re:Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368543#M9306</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 let us know the Intel oneAPI and MPI versions you are using?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please provide us with the complete CMAKE File, complete sample reproducer(test.cpp mentioned in the post) along with the steps and commands to reproduce the issue at our end?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;And also, could you please provide us with the screenshot of the error you are facing?&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>Mon, 14 Mar 2022 12:23:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368543#M9306</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-03-14T12:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368602#M9308</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;The versions of software installed on Ubuntu are the following:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;mpiexec --version replies Intel(R) MPI Library for Linux* OS, Version 2021.5 Build 20211102 (id: 9279b7d62)&lt;/LI&gt;
&lt;LI&gt;icpc (ICC) 2021.5.0 20211109&lt;/LI&gt;
&lt;LI&gt;icpc (ICC) 2021.5.0 20211109&lt;/LI&gt;
&lt;LI&gt;GNU gdb (Ubuntu 9.2-0ubuntu1~20.04.1) 9.2&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 15:04:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368602#M9308</guid>
      <dc:creator>flgilbert</dc:creator>
      <dc:date>2022-03-14T15:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368655#M9309</link>
      <description>&lt;P&gt;I am still working on this, and now I can launch the MPI program without problem.&lt;/P&gt;
&lt;P&gt;I believe the problem was using the basic gdb instead of the gdb distributed with OneAPI.&lt;/P&gt;
&lt;P&gt;To make Visual Studio use gdb-oneapi, I added a debug configuration to my project.&amp;nbsp; Visual Studio keeps these in launch.vs.json.&amp;nbsp; The new configuration sources setvars.sh, then starts the OneAPI debugger.&amp;nbsp; The SEGFAULT is no more, and I can do all the normal debugging actions (single-stepping, inspecting vars, etc.)&lt;/P&gt;
&lt;P&gt;Here is the configuration:&lt;/P&gt;
&lt;P&gt;{&lt;BR /&gt;"version": "0.2.1",&lt;BR /&gt;"defaults": {},&lt;BR /&gt;"configurations": [&lt;BR /&gt;{&lt;BR /&gt;"type": "cppgdb",&lt;BR /&gt;"name": "testMPI",&lt;BR /&gt;"project": "CMakeLists.txt",&lt;BR /&gt;"projectTarget": "testMPI",&lt;BR /&gt;"debuggerConfiguration": "gdb",&lt;BR /&gt;"gdbPath": "/opt/intel/oneapi/debugger/latest/gdb/intel64/bin/gdb-oneapi",&lt;BR /&gt;"preDebugCommand": "source /opt/intel/oneapi/setvars.sh",&lt;BR /&gt;"args": [],&lt;BR /&gt;"env": {}&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The last thing that is still missing is starting the program with mpiexec and setting the number of processors and threads.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 18:35:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368655#M9309</guid>
      <dc:creator>flgilbert</dc:creator>
      <dc:date>2022-03-14T18:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368772#M9310</link>
      <description>&lt;P&gt;The other option is launching the program with mpiexec, but then Visual Studio can't seem to set the breakpoints.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="json"&gt;{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "cppgdb",
"name": "testMPI",
"project": "CMakeLists.txt",
"projectTarget": "testMPI",
"debuggerConfiguration": "gdb",
"gdbPath": "/opt/intel/oneapi/debugger/latest/gdb/intel64/bin/gdb-oneapi",
"preDebugCommand": "source /opt/intel/oneapi/setvars.sh",
"program": "mpiexec",
"args": [ "-n", "3", "${debugInfo.fullTargetPath}" ], //Launches 3 threads. VS can't debug with this :(
"env": {}
}
]
}&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 15 Mar 2022 01:23:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1368772#M9310</guid>
      <dc:creator>flgilbert</dc:creator>
      <dc:date>2022-03-15T01:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1369172#M9322</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for providing the information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please let us know the detailed steps that you have followed to set up WSL2 with Intel oneAPI, Ubuntu, and Visual Studio?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt; The SEGFAULT is no more, and I can do all the normal debugging actions(single-stepping, inspecting vars, etc.)&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Glad to know that one of your issues is resolved. Could you please confirm if it works with the -n(number of processes) is 1?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt;//Launches 3 threads. VS can't debug with this&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Could you please elaborate on the above statement?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please provide us with a screenshot of the error you are facing?&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;</description>
      <pubDate>Wed, 16 Mar 2022 12:30:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1369172#M9322</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-03-16T12:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1369360#M9325</link>
      <description>&lt;P&gt;I'll start with the questions, which are quick.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;gt;&amp;gt;&lt;I&gt; The SEGFAULT is no more, and I can do all the normal debugging actions(single-stepping, inspecting vars, etc.)&lt;/I&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;gt; Glad to know that one of your issues is resolved. Could you please confirm if it works with the -n(number of processes) is 1?&lt;/P&gt;
&lt;P&gt;I just checked, and it works even with -n 1.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt;//Launches 3 threads. VS can't debug with this&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;This is the last remaining hole in this setup:&amp;nbsp; if I use mpiexec, the Visual Studio debugger does not seem to be able to attach to the process:&amp;nbsp; any breakpoints I set are never triggered.&amp;nbsp; I tried adding the "-gdb" option to the arguments of mpiexec, but I get a weird output in the console;&amp;nbsp; you will find a screenshot with this message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for the setup instructions, I do not remember doing anything more than outlined in my first post.&amp;nbsp; I do see I have skipped one detail in my first post:&amp;nbsp; in step (2), I used the apt package manager inside the WSL console, following the instructions outlined here:&amp;nbsp; &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/installation-guide-for-intel-oneapi-toolkits-linux/top/installation/install-using-package-managers/apt.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/develop/documentation/installation-guide-for-intel-oneapi-toolkits-linux/top/installation/install-using-package-managers/apt.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 17:44:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1369360#M9325</guid>
      <dc:creator>flgilbert</dc:creator>
      <dc:date>2022-03-16T17:44:15Z</dc:date>
    </item>
    <item>
      <title>Re:Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1371578#M9351</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;but then Visual Studio can't seem to set the breakpoints.&lt;/P&gt;&lt;P&gt;We are able to reproduce it. We are in discussion with the development team and will get back to you soon.&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, 24 Mar 2022 05:10:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1371578#M9351</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-03-24T05:10:39Z</dc:date>
    </item>
    <item>
      <title>Re:Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1373268#M9375</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We are working on your issue and will get back to you soon.&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, 31 Mar 2022 12:29:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1373268#M9375</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-03-31T12:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1377067#M9412</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are able to get the expected results using the gdb-oneapi debugger with breakpoints in WSL2(Ubuntu 20.04 LTS). Please find the below screenshot while running the Sample Hello World MPI code:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mpiGDB.png" style="width: 430px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/28563i0BFB80360B104AA9/image-dimensions/430x308?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="430" height="308" role="button" title="mpiGDB.png" alt="mpiGDB.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Hence, the error seems to be with Visual Studio IDE and not with Intel oneAPI gdb- debugger &amp;amp; this forum is intended to support the queries related to Intel OneAPI. Please let us know if we can go ahead and close this thread.&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;</description>
      <pubDate>Thu, 14 Apr 2022 08:29:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1377067#M9412</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-04-14T08:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1377227#M9414</link>
      <description>&lt;P&gt;Do you at least plan to integrate this function in the Visual Studio integration for OneAPI?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 20:00:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1377227#M9414</guid>
      <dc:creator>flgilbert</dc:creator>
      <dc:date>2022-04-14T20:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Setting up Visual Studio for C++ MPI in WSL2</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1379348#M9437</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&lt;EM&gt;Do you at least plan to integrate this function&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;We have reported this issue to the concerned development team. They are looking into your issue.&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;</description>
      <pubDate>Sun, 24 Apr 2022 14:19:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Setting-up-Visual-Studio-for-C-MPI-in-WSL2/m-p/1379348#M9437</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-04-24T14:19:52Z</dc:date>
    </item>
  </channel>
</rss>

