<?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 &amp;quot;forrtl: severe (41): insufficient virtual memory&amp;quot; wh in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890096#M10351</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/448903"&gt;zlh007&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Gennady,&lt;BR /&gt;Thanks a lot! Yesterday, Ibuilt the code without the option-&lt;STRONG&gt;'/heap-arrays'&lt;/STRONG&gt; but with &lt;STRONG&gt;'/stack:80000000'&lt;/STRONG&gt; in link comand line option. In this case, the execute run correctly without the previous error until now (n=300000) and the the time integration is still stepping at the time I replying this thread. I willkeep on oberving this execute stepping. Hope the problem can be solved in this way. But I still don't understand the reason about it.&lt;BR /&gt;---Zhong&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;
&lt;P&gt;Hi Zhong,&lt;/P&gt;
&lt;P&gt;In reason to reproduce your problem could you provide us example of your program with calling Helmholtz routines? Also, could you describe what type of Dirichle boundary condition you used in your code - zero or nonzero? Based on it we can propose solution of your problem and restructure loop to optimize performance.&lt;/P&gt;
&lt;P&gt;With best regards,&lt;BR /&gt;Alexander Kalinkin&lt;/P&gt;</description>
    <pubDate>Tue, 10 Nov 2009 08:07:38 GMT</pubDate>
    <dc:creator>Alexander_K_Intel2</dc:creator>
    <dc:date>2009-11-10T08:07:38Z</dc:date>
    <item>
      <title>Error "forrtl: severe (41): insufficient virtual memory" when use MKL poisson library in time-dependent problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890093#M10348</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Recently, I used the MKL possion library to solve 2-d Helmholtz equations in a time-dependent problem by the use of the IVF11.1.038(ia32) in microsoft visual studio 2008 in windowsXP(32bit). Because the arrays used in my code is tool large (having the dimensions as: 201*401*2), "heap-arrays" is the additional option of used in the command line.At each time step, two 2-D Helmholtz equations will be solved. At each time solving the Helmholtz, the sequence of invoking Poisson library follows the standard foursteps: Initialization--&amp;gt;check consistency and correctness--&amp;gt;compute solution--&amp;gt;clear the memory. I have built the code successfully and theresultscalculatedby this code seems correct until the time step n=144000. After that time step, the execute of the code terminated as showing the error "&lt;STRONG&gt;Error forrtl: severe (41): insufficient virtual memory&lt;/STRONG&gt;". The codeabout this part is:&lt;BR /&gt;&lt;BR /&gt;!------------- Input parameter forHelmholtz solver&lt;BR /&gt;! nx and nyare the number of gridpoints in x- and y-direction, respectively&lt;BR /&gt;&lt;STRONG&gt; integer ipar(128),stat&lt;BR /&gt; real*8 ax, bx, ay, by&lt;BR /&gt; real*8 dpar(13*(nx-1)/2+7),f(nx,ny)&lt;BR /&gt; real*8 bd_ax(ny), bd_bx(ny), bd_ay(nx), bd_by(nx)&lt;BR /&gt; type(DFTI_DESCRIPTOR), pointer :: xhandle&lt;BR /&gt; character(4) BCtype&lt;BR /&gt; parameter (ax=0,bx=lx,ay=0,by=ly,BCtype = 'DDDD')&lt;BR /&gt;&lt;/STRONG&gt;!&lt;BR /&gt;!--------------------- Time Stepping -------------------------- &lt;BR /&gt;!&lt;BR /&gt;&lt;STRONG&gt;do 10 n=1,10000000&lt;BR /&gt;&lt;/STRONG&gt;!---------------------------------------------------------------&lt;BR /&gt;! Solving Helmholtz equation&lt;BR /&gt;!---------------------------------------------------------------&lt;BR /&gt;&lt;STRONG&gt; ! Array 'rdec' is the right hand side of the 2-d Helmholtz equation&lt;BR /&gt; ! Vector 'Lv' is the costant 'q' for Helmholtz equation&lt;BR /&gt;do k=1,2&lt;BR /&gt; call d_init_Helmholtz_2D(ax, bx, ay, by, nx-1, ny-1, BCtype, Lv(k), ipar, dpar, stat)&lt;BR /&gt; call d_commit_Helmholtz_2D(rdec(:,:,k), bd_ax, bd_bx, bd_ay, bd_by, xhandle, ipar, dpar, stat)&lt;BR /&gt; call d_Helmholtz_2D(rdec(:,:,k), bd_ax, bd_bx, bd_ay, bd_by, xhandle, ipar, dpar, stat)&lt;BR /&gt; call free_Helmholtz_2D(xhandle, ipar, stat) &lt;BR /&gt; enddo&lt;BR /&gt; endif&lt;BR /&gt;10 continue&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;The code run correctly until about n=144000. Is there errorsin the calling of the Poisson library? Or, any otherpossible misunderstandings I have made?&lt;BR /&gt;Thanks for your reading.&lt;BR /&gt;&lt;BR /&gt;Zhong&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2009 13:29:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890093#M10348</guid>
      <dc:creator>zlh007</dc:creator>
      <dc:date>2009-11-09T13:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error "forrtl: severe (41): insufficient virtual memory" wh</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890094#M10349</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Zhong, at the first sight the calling of Poisson solver is correct. Can you check the probelm with 64-bit version and with 64-bit compiler as well? if not - can you get the test. We'll check on our side!&lt;BR /&gt;--Gennady&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Nov 2009 15:25:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890094#M10349</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-11-09T15:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error "forrtl: severe (41): insufficient virtual memory" wh</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890095#M10350</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Zhong, at the first sight the calling of Poisson solver is correct. Can you check the probelm with 64-bit version and with 64-bit compiler as well? if not - can you get the test. We'll check on our side!&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Gennady,&lt;BR /&gt;Thanks a lot! Yesterday, Ibuilt the code without the option-&lt;STRONG&gt;'/heap-arrays'&lt;/STRONG&gt; but with &lt;STRONG&gt;'/stack:80000000'&lt;/STRONG&gt; in link comand line option. In this case, the execute run correctly without the previous error until now (n=300000) and the the time integration is still stepping at the time I replying this thread. I willkeep on oberving this execute stepping. Hope the problem can be solved in this way. But I still don't understand the reason about it.&lt;BR /&gt;---Zhong</description>
      <pubDate>Tue, 10 Nov 2009 02:49:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890095#M10350</guid>
      <dc:creator>zlh007</dc:creator>
      <dc:date>2009-11-10T02:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error "forrtl: severe (41): insufficient virtual memory" wh</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890096#M10351</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/448903"&gt;zlh007&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Gennady,&lt;BR /&gt;Thanks a lot! Yesterday, Ibuilt the code without the option-&lt;STRONG&gt;'/heap-arrays'&lt;/STRONG&gt; but with &lt;STRONG&gt;'/stack:80000000'&lt;/STRONG&gt; in link comand line option. In this case, the execute run correctly without the previous error until now (n=300000) and the the time integration is still stepping at the time I replying this thread. I willkeep on oberving this execute stepping. Hope the problem can be solved in this way. But I still don't understand the reason about it.&lt;BR /&gt;---Zhong&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;
&lt;P&gt;Hi Zhong,&lt;/P&gt;
&lt;P&gt;In reason to reproduce your problem could you provide us example of your program with calling Helmholtz routines? Also, could you describe what type of Dirichle boundary condition you used in your code - zero or nonzero? Based on it we can propose solution of your problem and restructure loop to optimize performance.&lt;/P&gt;
&lt;P&gt;With best regards,&lt;BR /&gt;Alexander Kalinkin&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2009 08:07:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890096#M10351</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2009-11-10T08:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error "forrtl: severe (41): insufficient virtual memory" wh</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890097#M10352</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/421788"&gt;Alexander Kalinkin (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;
&lt;P&gt;Hi Zhong,&lt;/P&gt;
&lt;P&gt;In reason to reproduce your problem could you provide us example of your program with calling Helmholtz routines? Also, could you describe what type of Dirichle boundary condition you used in your code - zero or nonzero? Based on it we can propose solution of your problem and restructure loop to optimize performance.&lt;/P&gt;
&lt;P&gt;With best regards,&lt;BR /&gt;Alexander Kalinkin&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Hi Alexander,&lt;BR /&gt;Firstly, thank your very much for your help.On the four boundaries, Dirichle boundary conditions are given as zero. Becausemy codes is too long to display in thread, I compressed theminto a winrar file in attachments, in which one main code 'MLQGmain.f90' and several subroutines and a .dat file are included. You can build these codes asa console application. Thefile 'number.dat'must be put into the same directory as the codes and will be read when execute the application. The poisson solver is only used in time loop as shown in my question. &lt;BR /&gt;With best regards,&lt;BR /&gt;Linhao Zhong&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Nov 2009 13:13:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890097#M10352</guid>
      <dc:creator>zlh007</dc:creator>
      <dc:date>2009-11-10T13:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error "forrtl: severe (41): insufficient virtual memory" wh</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890098#M10353</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/448903"&gt;zlh007&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Zhong, at the first sight the calling of Poisson solver is correct. Can you check the probelm with 64-bit version and with 64-bit compiler as well? if not - can you get the test. We'll check on our side!&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Gennady,&lt;BR /&gt;Thanks a lot! Yesterday, Ibuilt the code without the option-&lt;STRONG&gt;'/heap-arrays'&lt;/STRONG&gt; but with &lt;STRONG&gt;'/stack:80000000'&lt;/STRONG&gt; in link comand line option. In this case, the execute run correctly without the previous error until now (n=300000) and the the time integration is still stepping at the time I replying this thread. I willkeep on oberving this execute stepping. Hope the problem can be solved in this way. But I still don't understand the reason about it.&lt;BR /&gt;---Zhong&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Zhong, &lt;BR /&gt;probably the reason of thisbehaviour is the memory leakage in this functionality ... &lt;BR /&gt;Can you check it on your side, please ...&lt;BR /&gt;--Gennady&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Nov 2009 07:44:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890098#M10353</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-11-12T07:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error "forrtl: severe (41): insufficient virtual memory" wh</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890099#M10354</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Zhong, &lt;BR /&gt;probably the reason of thisbehaviour is the memory leakage in this functionality ... &lt;BR /&gt;Can you check it on your side, please ...&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black; font-weight: normal; mso-bidi-font-weight: bold;"&gt;Zhong,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black; font-weight: normal; mso-bidi-font-weight: bold;"&gt;Unfortunately, I didnt found in your code value of internal loop (k), but if k from 1 to 2 try to restructure your code in next way. It will increase performance of your code and, probably, could solve your problem:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;call d_init_Helmholtz_2D(ax, bx, ay, by, nx-1, ny-1, BCtype, Lv(1), ipar_1, dpar_1, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;call d_init_Helmholtz_2D(ax, bx, ay, by, nx-1, ny-1, BCtype, Lv(2), ipar_2, dpar_2, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;ipar(1) = 990&lt;BR /&gt; &lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt;call d_commit_Helmholtz_2D(rdec(:,:,k), bd_ax, bd_bx, bd_ay, bd_by, xhandle_1, ipar_1, dpar_1, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;ipar(1) = 990&lt;BR /&gt; &lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt;call d_commit_Helmholtz_2D(rdec(:,:,k), bd_ax, bd_bx, bd_ay, bd_by, xhandle_2, ipar_2, dpar_2, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;do 10 n=1,10000000&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black; mso-ansi-language: RU;" lang="RU"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt; ! Array 'rdec' is the right hand side of the 2-d Helmholtz equation&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;&lt;BR /&gt; &lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt; ! Vector 'Lv' is the costant 'q' for Helmholtz equation&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt; &lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt;&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;ipar(1) = 9&lt;BR /&gt; &lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt; call d_commit_Helmholtz_2D(rdec(:,:,1), bd_ax, bd_bx, bd_ay, bd_by, xhandle_1, ipar_1, dpar_1, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt; &lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt; call d_Helmholtz_2D(rdec(:,:,k), bd_ax, bd_bx, bd_ay, bd_by, xhandle_1, ipar_1, dpar_1, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;ipar(1) = 9&lt;BR /&gt; &lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt; call d_commit_Helmholtz_2D(rdec(:,:,2), bd_ax, bd_bx, bd_ay, bd_by, xhandle_2, ipar_2, dpar_2, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt; &lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt; call d_Helmholtz_2D(rdec(:,:,k), bd_ax, bd_bx, bd_ay, bd_by, xhandle_2, ipar_2, dpar_2, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;10 continue&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;call free_Helmholtz_2D(xhandle_1, ipar_1, stat)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 8.5pt; font-family: Verdana; color: black;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-family: Verdana;"&gt;call free_Helmholtz_2D(xhandle_2, ipar_2, stat) &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-family: Verdana;"&gt;with best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;Alexander Kalinkin&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2009 08:13:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890099#M10354</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2009-11-12T08:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error "forrtl: severe (41): insufficient virtual memory" wh</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890100#M10355</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Zhong, &lt;BR /&gt;probably the reason of thisbehaviour is the memory leakage in this functionality ... &lt;BR /&gt;Can you check it on your side, please ...&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Gennady,&lt;BR /&gt;I see you have replied to my anotherquestion about using Pardiso in time-dependent problem. But I can't seeyourreply in that webpage maybe due to some mistake ofthe forum. Can yousend you advice to me in this thread ormy email (&lt;A href="mailto:zlh@mail.iap.ac.cn"&gt;zlh@mail.iap.ac.cn&lt;/A&gt;)? Thanks a lot!&lt;BR /&gt;Zhong</description>
      <pubDate>Fri, 13 Nov 2009 07:58:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-quot-forrtl-severe-41-insufficient-virtual-memory-quot/m-p/890100#M10355</guid>
      <dc:creator>zlh007</dc:creator>
      <dc:date>2009-11-13T07:58:21Z</dc:date>
    </item>
  </channel>
</rss>

