This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

informational question: compile time of large DATA arrays


Hi all.
I am currently waiting for gfortran to finish compilation of a module
that looks like this:

MODULE foo
REAL :: grid(0:          50 , 0:       10000 )
DATA grid(           0 ,           0 ) /    1.000000      /
DATA grid(           0 ,           1 ) /   0.9999750      /
DATA grid(           0 ,           2 ) /   0.9999000      /
[ ... ]
CONTAINS
 [a simple function working on the grid]
END MODULE

Could someone enlighten my why it takes more than 20 minutes
(3.2GHz P4, 2GB RAM) to compile a module like this?

Thanks
  Daniel


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]