<?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: Visual Studio: memory utilisation in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305882#M157131</link>
    <description>&lt;P&gt;As I suspected, you have large static arrays (in COMMON most likely). On Windows, there is a 2GB limit on static code and data, even in x64.&lt;/P&gt;
&lt;P&gt;Change these arrays to ALLOCATABLE and ALLOCATE them to the desired sizes. Then you will be able to use more virtual memory.&lt;/P&gt;</description>
    <pubDate>Wed, 11 Aug 2021 15:39:44 GMT</pubDate>
    <dc:creator>Steve_Lionel</dc:creator>
    <dc:date>2021-08-11T15:39:44Z</dc:date>
    <item>
      <title>Visual Studio: memory utilisation</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1304982#M157117</link>
      <description>&lt;P&gt;I am using 128 GB RAM workstation for my simulation on Intel FORTRAN Compiler on Visual studio platform. I intend to use the workstation for high speed and large computational domain. However, for larger computational size, the memory limitation comes into picture. While processing for comparatively smaller computations, it shows only the 10% of full capacity of RAM in the task manager. However, a little larger size gives memory error.&lt;/P&gt;
&lt;P&gt;For accommodating larger computational domain, visual studio should utilize higher memory. Could you suggest some way out so that higher memory allocation is possible and large computational domain could be solved!&amp;nbsp;&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/121783"&gt;@fortran&lt;/a&gt;&amp;nbsp;&amp;nbsp;@Visual studio&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Aug 2021 20:44:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1304982#M157117</guid>
      <dc:creator>AS_Cardiff</dc:creator>
      <dc:date>2021-08-09T20:44:06Z</dc:date>
    </item>
    <item>
      <title>Re:Visual Studio: memory utilisation</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305493#M157118</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/174283"&gt;@AS_Cardiff&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Thank you for posting on the Intel® communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;In regards, to this request, we would like to inform you that we have a forum for those specific products and questions so we are moving it to the &lt;A href="https://community.intel.com/t5/Intel-Fortran-Compiler/bd-p/fortran-compiler" rel="noopener noreferrer" target="_blank"&gt;&lt;B&gt;Intel® Fortran Compiler Forum&lt;/B&gt;&lt;/A&gt; so it can get answered more quickly.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Andrew G.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Aug 2021 20:34:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305493#M157118</guid>
      <dc:creator>AndrewG_Intel</dc:creator>
      <dc:date>2021-08-10T20:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Studio: memory utilisation</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305576#M157120</link>
      <description>&lt;P&gt;I think we need some more details. Are you using ALLOCATABLE arrays for the large data, or are you declaring them as local arrays or in COMMON? Are you building a 32-bit or 64-bit application? What is the error that you get?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 00:35:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305576#M157120</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2021-08-11T00:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Studio: memory utilisation</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305769#M157123</link>
      <description>&lt;P&gt;AS_Cardiff: Please note that the thread title as well as your description of the problem is confusing. The issue is about the memory used by your program after being compiled and run, not by Visual Studio or the compiler.&lt;/P&gt;
&lt;P&gt;As Steve_Lionel pointed out, the term "memory error" is rather vague since there are many different errors related to attempts to use/misuse memory. A more specific and precise statement of the error is needed before an attempt to overcome the error can be suggested.&lt;/P&gt;
&lt;P&gt;The most likely reason for your program failing when running a test case where more memory is used: an error in your program, such as exceeding array bounds, attempting to write to a section of memory that is write-protected, etc. Again, note that this has little to do with Visual Studio or the compiler.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 15:43:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305769#M157123</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2021-08-11T15:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Studio: memory utilisation</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305859#M157129</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/5442"&gt;@Steve_Lionel&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;I am using allocatable arrays for the larger data; some of them are local arrays and some are shared. I am using VS 2019 in windows&amp;nbsp; 64 bits, 128 GB RAM, 10 cores.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the error message is:&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;Error fatal error LNK1248: image size (A3CC0000) exceeds maximum allowable size (80000000) LINK&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I changed my executable to run in x64 mode (which is said to address upto 2GB memory!).&amp;nbsp; Since the RAM of workstation, I am using is &lt;STRONG&gt;128 GB&lt;/STRONG&gt;,&amp;nbsp; is there a way to address the memory issue?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 14:45:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305859#M157129</guid>
      <dc:creator>AS_Cardiff</dc:creator>
      <dc:date>2021-08-11T14:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Visual Studio: memory utilisation</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305882#M157131</link>
      <description>&lt;P&gt;As I suspected, you have large static arrays (in COMMON most likely). On Windows, there is a 2GB limit on static code and data, even in x64.&lt;/P&gt;
&lt;P&gt;Change these arrays to ALLOCATABLE and ALLOCATE them to the desired sizes. Then you will be able to use more virtual memory.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 15:39:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Visual-Studio-memory-utilisation/m-p/1305882#M157131</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2021-08-11T15:39:44Z</dc:date>
    </item>
  </channel>
</rss>

