<?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: Array Capacity Question in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841259#M59228</link>
    <description>32-bit Windows has a fixed part of the address space which can be shared by arrays and program.  It is larger with Windows 2000 (near 2GB) than with XPSP2. If you use all of this space, you will get better performance with 2GB RAM.  XP, with the /3GB boot option, has another data address space of 1GB.  As Steve noted in the next reply, that is available (with LARGEADDRESSAWARE) only to ALLOCATABLE arrays.  On the Windows X64 OS for EM64T and AMD64, much larger ALLOCATABLE arrays should be possible, but static arrays and COMMON are limited to 2GB each.  While ifort on Windows Server for Itanium, with enough RAM installed, would support much larger static arrays, if you read the news last week you would see that Microsoft officially left engineering analysis out of their plans for Itanium.&lt;P&gt;Message Edited by tim18 on &lt;SPAN class="date_text"&gt;09-11-2005&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;06:13 AM&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 11 Sep 2005 12:45:17 GMT</pubDate>
    <dc:creator>TimP</dc:creator>
    <dc:date>2005-09-11T12:45:17Z</dc:date>
    <item>
      <title>Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841258#M59227</link>
      <description>Before I replace my PC, I was wondering about capacities of various PC platforms.  For example, I run real*8 arrays for engineering analyses.  I could dimension at 30e06 for DVF, I now run at 60e06 with IVF (it runs fine even with the "image may not run" warning).  I use Windows-XP, a 3-Ghz Intel-P4 with 1-Gb of RAM. I'm not sure what actually limits array size, I assume it's the compiler.  Can you speculate what the real*8 array capacity might be using an Itanium, IVF with a 64-bit OS?  Any other PC or software recommendations if array size is the critical factor?</description>
      <pubDate>Sun, 11 Sep 2005 07:07:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841258#M59227</guid>
      <dc:creator>mushroom89_</dc:creator>
      <dc:date>2005-09-11T07:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841259#M59228</link>
      <description>32-bit Windows has a fixed part of the address space which can be shared by arrays and program.  It is larger with Windows 2000 (near 2GB) than with XPSP2. If you use all of this space, you will get better performance with 2GB RAM.  XP, with the /3GB boot option, has another data address space of 1GB.  As Steve noted in the next reply, that is available (with LARGEADDRESSAWARE) only to ALLOCATABLE arrays.  On the Windows X64 OS for EM64T and AMD64, much larger ALLOCATABLE arrays should be possible, but static arrays and COMMON are limited to 2GB each.  While ifort on Windows Server for Itanium, with enough RAM installed, would support much larger static arrays, if you read the news last week you would see that Microsoft officially left engineering analysis out of their plans for Itanium.&lt;P&gt;Message Edited by tim18 on &lt;SPAN class="date_text"&gt;09-11-2005&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;06:13 AM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Sep 2005 12:45:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841259#M59228</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2005-09-11T12:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841260#M59229</link>
      <description>Both Windows 2000 and Windows XP have, by default, 2GB for user code and data.  On some versions of Windows 2000 and on Windows XP, you can specialy configure the system to raise this to 3GB.  But you must use dynamic allocation (ALLOCATABLE) to take advantage of any space more than 2GB.  Note also that your application's code, including libraries, plus some OS overhead, means that you can't use the whole 2GB - 1.75GB is a practical limit.&lt;BR /&gt;&lt;BR /&gt;On the 64-bit platforms, Itanium and Intel EM64T, running Windows Server 2003 or (for EM64T), the x64 editions of Windows, the virtual address space available is MUCH larger.  How large depends on a combination of RAM and swapfile.  But you're STILL limited to 2GB for static code and data (eg. COMMON or locally declared arrays,) due to the design of the Microsoft object language format.  You can use dynamic allocation to use the increased space.&lt;BR /&gt;&lt;BR /&gt;I would encourage Fortran programmers to move away from static allocation of large arrays for really big problems.  ALLOCATABLE is easy to use, though in some contexts performance may suffer a bit.</description>
      <pubDate>Sun, 11 Sep 2005 17:56:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841260#M59229</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-09-11T17:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841261#M59230</link>
      <description>Seve/Tim, I appreciate the interesting discussion on static array size.  Most of my code uses "static" arrays from blank common.  I don't like using virtual memory since the swapfile takes forever.  I'd rather use "block solvers" which minimizes the disk crawl.  My upgrade path would be to Xeon w/E7525 chipset and Win-XP Professional if I were to upgrade to EM64T now.  However, I'm probably going to upgrade RAM from 1Gb to 2Gb first since that appears to be my current bottleneck.  The Windows Task Manager seems to confirm that I have 1Gb of Physical Memory, and that 0.2Gb is used by Windows-XP, leaving 0.8Gb for the program.  It looks like there is a definite step-function in static array size and cost going from PCs to servers.</description>
      <pubDate>Mon, 12 Sep 2005 09:40:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841261#M59230</guid>
      <dc:creator>mushroom89_</dc:creator>
      <dc:date>2005-09-12T09:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841262#M59231</link>
      <description>You're using virtual memory anyway, whether it is in static arrays or dynanic arrays.  The only issue is that with arrays in COMMON, it's not possible to represent in the EXE an array larger than 2GB.</description>
      <pubDate>Mon, 12 Sep 2005 19:55:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841262#M59231</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-09-12T19:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841263#M59232</link>
      <description>Understood.  However, I'd rather keep my programs as-is and buy a bigger 64b computer, than re-write them all.  I can summarize some of my concerns: 64b systems can have up to 16 Tb of virtual memory, but only ~16 Gb of RAM.  However, those same systems only have up to 2 Tb of usable disk space.  I'm not sure what the IVF 64b array size limit is, 16Tb or 2Tb?  Then we have the 2Gb EXE limit, unless we ALLOCATE more virtual array space.  It seems to me that the 2Gb EXE limit matches-up well with the 2Gb RAM limit for IA32 Windows-XP for PCs, with the option to allocate more if needed.  I'll let you know if I gain any more array size with another Gb of RAM.</description>
      <pubDate>Tue, 13 Sep 2005 06:34:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841263#M59232</guid>
      <dc:creator>mushroom89_</dc:creator>
      <dc:date>2005-09-13T06:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841264#M59233</link>
      <description>The compiler has no inherent array size limit.  Whatever the OS will let you do, the compiler will let you do.&lt;BR /&gt;&lt;BR /&gt;Please keep in mind my note that even on the 64-bit versions of Windows, static code and data is limited to 2GB.  So even on EM64T systems you cannot have a 4GB array in COMMON.  This is a Windows design restriction, not a compiler limit.</description>
      <pubDate>Tue, 13 Sep 2005 08:12:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841264#M59233</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-09-13T08:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841265#M59234</link>
      <description>For arguments sake, lets say that I can dynamically allocate the largest array of my programs effectively.  Any idea of the "allocatable" array size limitation between IA32 and EM64T?  Is the virtual memory limited by the OS as well?  If so what is the ballpark difference between XP-IA32 and XP-Pro-EM64T?</description>
      <pubDate>Tue, 13 Sep 2005 09:39:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841265#M59234</guid>
      <dc:creator>mushroom89_</dc:creator>
      <dc:date>2005-09-13T09:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841266#M59235</link>
      <description>It's determined by the OS and the size of the process virtual address space.  On IA-32, that's 2GB, or 3GB with the /3GB boot option.  These are theoretical limits, in practice you'll be cut off somewhat smaller.&lt;BR /&gt;&lt;BR /&gt;On the 64-bit operating systems, you're wide open.  I assume by "XP Pro-EM64T" you mean Windows XP Professional x64 Edition.</description>
      <pubDate>Tue, 13 Sep 2005 20:14:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841266#M59235</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-09-13T20:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841267#M59236</link>
      <description>Thanks.  I'll test the IA32 array size limits shortly.  I'll try for ~1Gb of static and 2Gb of virtual space using an allocated array (w/3GB boot).  With 1Gb of RAM the "image" run size is &amp;lt;2.15Gb and a common dimension of 220e06 runs.  I'll add 1Gb of RAM and see if that changes.  I was curious what the cut-off point was between IA32 and EM64T systems.  If EM64T still has the 2Gb static limit, but virtual array space only limited by available disk capacity, 100Gb or more should be attainable.  I'd also assume that the 64b system using that much virtual storage would be much slower than the in-core static array solutions, but with 50x the capacity.  (capacity vs. speed)  I know a lot more now than when I started this discussion, thanks again!</description>
      <pubDate>Wed, 14 Sep 2005 06:58:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841267#M59236</guid>
      <dc:creator>mushroom89_</dc:creator>
      <dc:date>2005-09-14T06:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841268#M59237</link>
      <description>&lt;P&gt;I would like share some ofmy exprience of conversion of an application using COMMON blocks to using allocatable arrays. The conversion is relatively trivial. In my case it involved ~700 program modules and 100's of common blocks.&lt;/P&gt;
&lt;P&gt;You might want to try it first by converting only portions of your code at a time in the following manner:&lt;/P&gt;
&lt;P&gt;1) create a file for use as a FORTRAN Module e.g.&lt;/P&gt;
&lt;P&gt; Module_Common.f90&lt;/P&gt;
&lt;P&gt;This file contains:&lt;/P&gt;
&lt;P&gt; ! Module_Common.f90&lt;/P&gt;
&lt;P&gt; module Module_Common&lt;/P&gt;
&lt;P&gt; real(8), pointer :: DVF(:)&lt;/P&gt;
&lt;DIV&gt; end Module_Common&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;2) compile as module file&lt;/DIV&gt;
&lt;DIV&gt;3) Add toyour subroutines and functions that reference DVF(i):&lt;/DIV&gt;
&lt;DIV&gt; use Module_Common&lt;/DIV&gt;
&lt;DIV&gt; &lt;/DIV&gt;
&lt;DIV&gt;4) in your initialization code add the allocation to the size you want&lt;/DIV&gt;
&lt;DIV&gt; iSizeYouWant = int(60e6)&lt;/DIV&gt;
&lt;DIV&gt; allocate(DVF(iSizeYouWant))&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Sep 2005 03:32:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841268#M59237</guid>
      <dc:creator>jim_dempsey</dc:creator>
      <dc:date>2005-09-20T03:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841269#M59238</link>
      <description>&lt;P&gt;I would like share some ofmy exprience of conversion of an application using COMMON blocks to using allocatable arrays. The conversion is relatively trivial. In my case it involved ~700 program modules and 100's of common blocks.&lt;/P&gt;
&lt;P&gt;You might want to try it first by converting only portions of your code at a time in the following manner:&lt;/P&gt;
&lt;P&gt;1) create a file for use as a FORTRAN Module e.g.&lt;/P&gt;
&lt;P&gt; Module_Common.f90&lt;/P&gt;
&lt;P&gt;This file contains:&lt;/P&gt;
&lt;P&gt; ! Module_Common.f90&lt;/P&gt;
&lt;P&gt; module Module_Common&lt;/P&gt;
&lt;P&gt; real(8), pointer :: DVF(:)&lt;/P&gt;
&lt;DIV&gt; end Module_Common&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;2) compile as module file&lt;/DIV&gt;
&lt;DIV&gt;3) Add toyour subroutines and functions that reference DVF(i):&lt;/DIV&gt;
&lt;DIV&gt; use Module_Common&lt;/DIV&gt;
&lt;DIV&gt;! (removing &lt;/DIV&gt;
&lt;DIV&gt;4) in your initialization code add the allocation to the size you want&lt;/DIV&gt;
&lt;DIV&gt; iSizeYouWant = int(60e6)&lt;/DIV&gt;
&lt;DIV&gt; allocate(DVF(iSizeYouWant))&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Sep 2005 03:32:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841269#M59238</guid>
      <dc:creator>jim_dempsey</dc:creator>
      <dc:date>2005-09-20T03:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841270#M59239</link>
      <description>&lt;P&gt;I would like share some ofmy exprience of conversion of an application using COMMON blocks to using allocatable arrays. The conversion is relatively trivial. In my case it involved ~700 program modules and 100's of common blocks.&lt;/P&gt;
&lt;P&gt;You might want to try it first by converting only portions of your code at a time in the following manner:&lt;/P&gt;
&lt;P&gt;1) create a file for use as a FORTRAN Module e.g.&lt;/P&gt;
&lt;P&gt; Module_Common.f90&lt;/P&gt;
&lt;P&gt;This file contains:&lt;/P&gt;
&lt;P&gt; ! Module_Common.f90&lt;/P&gt;
&lt;P&gt; module Module_Common&lt;/P&gt;
&lt;P&gt; real(8), pointer :: DVF(:)&lt;/P&gt;
&lt;DIV&gt; end Module_Common&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;2) compile as module file&lt;/DIV&gt;
&lt;DIV&gt;3) Add toyour subroutines and functions that reference DVF(i):&lt;/DIV&gt;
&lt;DIV&gt; use Module_Common&lt;/DIV&gt;
&lt;DIV&gt;! (remove &lt;/DIV&gt;
&lt;DIV&gt;4) in your initialization code add the allocation to the size you want&lt;/DIV&gt;
&lt;DIV&gt; iSizeYouWant = int(60e6)&lt;/DIV&gt;
&lt;DIV&gt; allocate(DVF(iSizeYouWant))&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Sep 2005 03:32:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841270#M59239</guid>
      <dc:creator>jim_dempsey</dc:creator>
      <dc:date>2005-09-20T03:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841271#M59240</link>
      <description>&lt;P&gt;I would like share some ofmy exprience of conversion of an application using COMMON blocks to using allocatable arrays. The conversion is relatively trivial. In my case it involved ~700 program modules and 100's of common blocks.&lt;/P&gt;
&lt;P&gt;You might want to try it first by converting only portions of your code at a time in the following manner:&lt;/P&gt;
&lt;P&gt;1) create a file for use as a FORTRAN Module e.g.&lt;/P&gt;
&lt;P&gt; Module_Common.f90&lt;/P&gt;
&lt;P&gt;This file contains:&lt;/P&gt;
&lt;P&gt; ! Module_Common.f90&lt;/P&gt;
&lt;P&gt; module Module_Common&lt;/P&gt;
&lt;P&gt; real(8), pointer :: DVF(:)&lt;/P&gt;
&lt;DIV&gt; end Module_Common&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;2) compile as module file&lt;/DIV&gt;
&lt;DIV&gt;3) Add toyour subroutines and functions that reference DVF(i):&lt;/DIV&gt;
&lt;DIV&gt; use Module_Common&lt;/DIV&gt;
&lt;DIV&gt;! (remove COMMON &lt;/DIV&gt;
&lt;DIV&gt;4) in your initialization code add the allocation to the size you want&lt;/DIV&gt;
&lt;DIV&gt; iSizeYouWant = int(60e6)&lt;/DIV&gt;
&lt;DIV&gt; allocate(DVF(iSizeYouWant))&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Sep 2005 03:32:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841271#M59240</guid>
      <dc:creator>jim_dempsey</dc:creator>
      <dc:date>2005-09-20T03:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841272#M59241</link>
      <description>&lt;P&gt;I would like share some ofmy exprience of conversion of an application using COMMON blocks to using allocatable arrays. The conversion is relatively trivial. In my case it involved ~700 program modules and 100's of common blocks.&lt;/P&gt;
&lt;P&gt;You might want to try it first by converting only portions of your code at a time in the following manner:&lt;/P&gt;
&lt;P&gt;1) create a file for use as a FORTRAN Module e.g.&lt;/P&gt;
&lt;P&gt; Module_Common.f90&lt;/P&gt;
&lt;P&gt;This file contains:&lt;/P&gt;
&lt;P&gt; ! Module_Common.f90&lt;/P&gt;
&lt;P&gt; module Module_Common&lt;/P&gt;
&lt;P&gt; real(8), pointer :: DVF(:)&lt;/P&gt;
&lt;DIV&gt; end Module_Common&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;2) compile as module file&lt;/DIV&gt;
&lt;DIV&gt;3) Add toyour subroutines and functions that reference DVF(i):&lt;/DIV&gt;
&lt;DIV&gt; use Module_Common&lt;/DIV&gt;
&lt;DIV&gt;! Rember remove COMMON DVF()&lt;/DIV&gt;
&lt;DIV&gt;4) in your initialization code add the allocation to the size you want&lt;/DIV&gt;
&lt;DIV&gt; iSizeYouWant = int(60e6)&lt;/DIV&gt;
&lt;DIV&gt; allocate(DVF(iSizeYouWant))&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Sep 2005 03:33:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841272#M59241</guid>
      <dc:creator>jim_dempsey</dc:creator>
      <dc:date>2005-09-20T03:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Array Capacity Question</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841273#M59242</link>
      <description>&lt;P&gt;I would like share some ofmy exprience of conversion of an application using COMMON blocks to using allocatable arrays. The conversion is relatively trivial. In my case it involved ~700 program modules and 100's of common blocks.&lt;/P&gt;
&lt;P&gt;You might want to try it first by converting only portions of your code at a time in the following manner:&lt;/P&gt;
&lt;P&gt;1) create a file for use as a FORTRAN Module e.g.&lt;/P&gt;
&lt;P&gt; Module_Common.f90&lt;/P&gt;
&lt;P&gt;This file contains:&lt;/P&gt;
&lt;PRE&gt;
! Module_Common.f90
module Module_Common
real(8), pointer :: DVF(:)
end Module_Common&lt;/PRE&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;2) compile as module file&lt;/DIV&gt;
&lt;DIV&gt;3) Add toyour subroutines and functions that reference DVF(i):&lt;/DIV&gt;
&lt;DIV&gt; use Module_Common&lt;/DIV&gt;
&lt;DIV&gt;! Rember to remove COMMON DVF()&lt;/DIV&gt;
&lt;DIV&gt;4) in your initialization code add the allocation to the size you want&lt;/DIV&gt;
&lt;PRE&gt;iSizeYouWant = int(60e6)
allocate(DVF(iSizeYouWant))
&lt;/PRE&gt;&lt;P&gt;Message Edited by sblionel on &lt;SPAN class="date_text"&gt;09-19-2005&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;05:22 PM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2005 03:33:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-Capacity-Question/m-p/841273#M59242</guid>
      <dc:creator>jim_dempsey</dc:creator>
      <dc:date>2005-09-20T03:33:02Z</dc:date>
    </item>
  </channel>
</rss>

