<?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: Re:openmp memory leak when using g++ and libiomp5 in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371696#M9356</link>
    <description>&lt;P&gt;Dear Vidya,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks a lot for your response.&lt;/P&gt;
&lt;P&gt;Note that the actual compile command was&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;g++ -Ofast -fopenmp -c test.cpp
g++ -static -L /opt/intel/oneapi/compiler/2022.0.2/linux/compiler/lib/intel64_lin -o exe test.o -Wl,--start-group -l iomp5 -l pthread -lm -ldl -Wl,--end-group&lt;/LI-CODE&gt;
&lt;P&gt;Without "static" the problem won't show up.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For confirming the leak I just checked the memory build up in linux "top".&lt;/P&gt;
&lt;P&gt;With 256 GB of RAM the functional version (e.g. compiled with clang++ or with g++ without the "-static" flag) sit at 0% RAM usage throughout the runtime, where the g++ version with "-static" will use all RAM and 100GB swap space until it gets killed by the OS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for looking into this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 24 Mar 2022 12:12:03 GMT</pubDate>
    <dc:creator>may_ka</dc:creator>
    <dc:date>2022-03-24T12:12:03Z</dc:date>
    <item>
      <title>openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371262#M9346</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I found this code:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;#include &amp;lt;iostream&amp;gt;
#include &amp;lt;vector&amp;gt;
template&amp;lt;typename T&amp;gt;
void worknested1(std::vector&amp;lt;T&amp;gt; &amp;amp;x){
#if defined(_OPENMP)
#pragma omp parallel for num_threads(1)
#endif
  for(int j=0;j&amp;lt;x.size();++j){
    x[j]=(T)0;
  }
}
template&amp;lt;typename T&amp;gt;
void worknested0(){
#if defined(_OPENMP)
#pragma omp parallel num_threads(1)
#endif
  {
    std::vector&amp;lt;T&amp;gt; a;a.resize(100);
#if defined(_OPENMP)
#pragma omp for
#endif
    for(int i=0;i&amp;lt;10000;++i){
      worknested1(a);
    }
  }
};
void work(){
#if defined(_OPENMP)
#pragma omp parallel for num_threads(18)
#endif
  for(int i=0;i&amp;lt;1000000;++i){
    worknested0&amp;lt;double&amp;gt;();
  }
}
int main(){
  work();
  return(0);
}
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to produce a nice memory leak when compiled with&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;g++ -Ofast -fopenmp -c test.cpp
g++ -L /opt/intel/oneapi/compiler/2022.0.2/linux/compiler/lib/intel64_lin -o exe test.o -Wl,--start-group -l iomp5 -l pthread -lm -ldl -Wl,--end-group&lt;/LI-CODE&gt;
&lt;P&gt;Depending on the the number of iterations in &lt;CODE&gt;work&lt;/CODE&gt; it will eat the whole of my 256GB of RAM.&lt;/P&gt;
&lt;P&gt;The g++ version is 11.2.&lt;/P&gt;
&lt;P&gt;The problem does not occur with icpc 2021.5.0 and clang++ 13.0.1. Further, a workaround is to set &lt;CODE&gt;num_threads(1)&lt;/CODE&gt; in &lt;CODE&gt;worknested0&lt;/CODE&gt; to &lt;CODE&gt;num_threads(2)&lt;/CODE&gt;.&lt;/P&gt;
&lt;P&gt;Is there anything wrong in the code or is this a bug/incompatibility between g++ and Intel?&lt;/P&gt;
&lt;P&gt;OS is Arch Linux, kernel 5.16.&lt;/P&gt;
&lt;P&gt;OMP environment is:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;OMP_PLACES=cores
OMP_PROC_BIND=true
OMP_DYNAMIC=FALSE
OMP_MAX_ACTIVE_LEVELS=2147483647
OMP_NUM_THREADS=18
OMP_STACKSIZE=2000M
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 07:59:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371262#M9346</guid>
      <dc:creator>may_ka</dc:creator>
      <dc:date>2022-03-23T07:59:55Z</dc:date>
    </item>
    <item>
      <title>Re:openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371645#M9354</link>
      <description>&lt;P&gt;Hi Karl,&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;&amp;gt;&amp;gt;&lt;I&gt;incompatibility between g++ and Intel?&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Indeed they are compatible, you can use the g++ compiler to link the application with the Intel C++ Compiler OpenMP compatibility library, and the way you are doing, it is already mentioned in the document&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/optimization-and-programming-guide/openmp-support/openmp-library-support/using-the-openmp-libraries.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/optimization-and-programming-guide/openmp-support/openmp-library-support/using-the-openmp-libraries.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt;to produce a nice memory leak..it will eat the whole of my 256GB of RAM&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Could you please let us know how did you check the memory leaks (any steps that you have followed ) in this case so that we can check it from our end also?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Mar 2022 09:11:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371645#M9354</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2022-03-24T09:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Re:openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371696#M9356</link>
      <description>&lt;P&gt;Dear Vidya,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks a lot for your response.&lt;/P&gt;
&lt;P&gt;Note that the actual compile command was&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;g++ -Ofast -fopenmp -c test.cpp
g++ -static -L /opt/intel/oneapi/compiler/2022.0.2/linux/compiler/lib/intel64_lin -o exe test.o -Wl,--start-group -l iomp5 -l pthread -lm -ldl -Wl,--end-group&lt;/LI-CODE&gt;
&lt;P&gt;Without "static" the problem won't show up.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For confirming the leak I just checked the memory build up in linux "top".&lt;/P&gt;
&lt;P&gt;With 256 GB of RAM the functional version (e.g. compiled with clang++ or with g++ without the "-static" flag) sit at 0% RAM usage throughout the runtime, where the g++ version with "-static" will use all RAM and 100GB swap space until it gets killed by the OS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for looking into this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 12:12:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371696#M9356</guid>
      <dc:creator>may_ka</dc:creator>
      <dc:date>2022-03-24T12:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371998#M9359</link>
      <description>&lt;P&gt;Hi Karl,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; &lt;I&gt;the actual compile command was&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Thanks for letting us know about it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt;Without "static" the problem won't show up&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;I've tried to reproduce the issue with the "static" option with g++ compiler and observed the same behavior as you have mentioned (rapid growth in memory and then it is getting killed).&lt;/P&gt;
&lt;P&gt;As per the documentation, it is strongly recommended to use dynamic linking of the OpenMP libraries.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/compiler-reference/compiler-options/compiler-option-details/openmp-options-and-parallel-processing-options/qopenmp-link.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/compiler-reference/compiler-options/compiler-option-details/openmp-options-and-parallel-processing-options/qopenmp-link.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Here are some of my observations with the given code:&lt;/P&gt;
&lt;P&gt;If we still wish to continue with static linking(which is not recommended actually) of Intel OpenMP libraries we can use &lt;STRONG&gt;-qopenmp-link=static&lt;/STRONG&gt; option with &lt;STRONG&gt;Intel C++ Compiler&lt;/STRONG&gt;. I've tested with the below command and there are&lt;STRONG&gt; no memory leaks&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;icpc -qopenmp-link=static -Ofast test.cpp -o exe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;whereas the &lt;STRONG&gt;g++ compiler&lt;/STRONG&gt; is also working fine &lt;STRONG&gt;without causing any memory leaks&lt;/STRONG&gt; when &lt;STRONG&gt;linked dynamically&lt;/STRONG&gt; with the Intel OpenMP library like what you have observed previously.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please do let us know if it helps in resolving the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vidya.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 11:06:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1371998#M9359</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2022-03-25T11:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1373496#M9377</link>
      <description>&lt;P&gt;Hi Karl,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A gentle reminder:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please let us know if there is any update on your issue? Please do let us know if there is anything more that we could help with the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vidya.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 03:14:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1373496#M9377</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2022-04-01T03:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1373912#M9381</link>
      <description>&lt;P&gt;Hi VidyalathaB_Intel,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks a lot for looking into this.&lt;/P&gt;
&lt;P&gt;For some reasons I have to stick to static linking. The DPC++ compiler produces code which is about 10% slower than that of g++. Therefore, fixing the issue would best alternative. However, that certainly depends on where the problem is, in gcc or in libiomp5?!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 00:13:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1373912#M9381</guid>
      <dc:creator>may_ka</dc:creator>
      <dc:date>2022-04-04T00:13:17Z</dc:date>
    </item>
    <item>
      <title>Re:openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1373945#M9382</link>
      <description>&lt;P&gt;Hi Karl,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for getting back to us.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt;The DPC++ compiler produces code which is about 10% slower than that of g++&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Could you please confirm the same with icpc compiler &amp;amp; icpx compiler instead of using the dpc++ compiler? Also do let us know how did you confirm it is 10% slower so that we can also check it from our end &amp;amp; proceed further in this case.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Apr 2022 02:36:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1373945#M9382</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2022-04-04T02:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Re:openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1374982#M9392</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;my code, which encompasses 25,000 lines and involves a lot of DIY classes, is used for iterative algorithms (e.g. solvers), and the 10% is the difference in seconds per iteration. I have no small scale code example which reproduces that observation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With regard to the compiler I can give it a go, but where is the difference here between icpx and dpcpp?:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;root &amp;gt; pwd
/opt/intel/oneapi/compiler/2022.0.2/linux/bin
root &amp;gt; ./dpcpp --version
Intel(R) oneAPI DPC++/C++ Compiler 2022.0.0 (2022.0.0.20211123)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /opt/intel/oneapi/compiler/2022.0.2/linux/bin-llvm
root &amp;gt; ./icpx --version
Intel(R) oneAPI DPC++/C++ Compiler 2022.0.0 (2022.0.0.20211123)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /opt/intel/oneapi/compiler/2022.0.2/linux/bin-llvm
root &amp;gt; ./../bin-llvm/clang++ --version
Intel(R) oneAPI DPC++/C++ Compiler 2022.0.0 (2022.0.0.20211123)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /opt/intel/oneapi/compiler/2022.0.2/linux/bin/./../bin-llvm
root &amp;gt; ./intel64/icpc --version
icpc (ICC) 2021.5.0 20211109
Copyright (C) 1985-2021 Intel Corporation.  All rights reserved.&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With regard to icpc I have given up because:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;In file included from /usr/include/c++/11.2.0/cwchar(44),
                 from /usr/include/c++/11.2.0/bits/postypes.h(40),
                 from /usr/include/c++/11.2.0/bits/char_traits.h(40),
                 from /usr/include/c++/11.2.0/string(40),
                 from src/../incl/jarray.hpp(3),
                 from src/jarray.cpp(1):
/usr/include/wchar.h(155): error: attribute "__malloc__" does not take arguments
    __attribute_malloc__ __attr_dealloc_free;&lt;/LI-CODE&gt;
&lt;P data-unlink="true"&gt;with libc version&lt;/P&gt;
&lt;P data-unlink="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;root &amp;gt; ldd --version
ldd (GNU libc) 2.35
Copyright (C) 2022 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.&lt;/LI-CODE&gt;
&lt;P data-unlink="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-unlink="true"&gt;It appears as if this is problem in other&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/69404834/intel-compiler-fails-c14-check-with-attribute-malloc-does-not-take-argu" target="_self"&gt;compilers as well.&lt;/A&gt;&amp;nbsp;Which seems to come from using later version of libc. But I also understood that icpc is not developed anymore as dpcpp is the new target platform.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 22:38:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1374982#M9392</guid>
      <dc:creator>may_ka</dc:creator>
      <dc:date>2022-04-06T22:38:37Z</dc:date>
    </item>
    <item>
      <title>Re:openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1375485#M9397</link>
      <description>&lt;P&gt;Hi Karl,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have forwarded the issue "with respect to memory leaks with static linking of libiomp5 with g++ compiler" to the concerned development team and we will keep updating this thread.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt;The DPC++ compiler produces code which is about 10% slower than that of g++&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Meanwhile, you can share your test code with us if you are comfortable with it. Please let us know if you are interested in providing the details so that we can contact you privately.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Apr 2022 08:27:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1375485#M9397</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2022-04-08T08:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1440758#M10179</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/77816"&gt;@may_ka&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your patience.&lt;/P&gt;
&lt;P&gt;The issue raised by you is fixed in the latest release of oneAPI which is 2023.0.0. Please update to the latest version and try running the code and do let us know if it resolves the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vidya.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 06:57:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1440758#M10179</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2022-12-22T06:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: openmp memory leak when using g++ and libiomp5</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1442690#M10204</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/77816"&gt;@may_ka&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As the issue is already addressed and the fix is provided, we are going ahead and closing this issue. Please post a new question if you need any additional assistance from Intel as this thread will no longer be monitored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vidya.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2022 04:51:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/openmp-memory-leak-when-using-g-and-libiomp5/m-p/1442690#M10204</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2022-12-30T04:51:08Z</dc:date>
    </item>
  </channel>
</rss>

