Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Address error

changhee
Beginner
511 Views
I compiled a benchmark program using Intel Fortran Compiler8.0 with no problem on Windows Server 2003
However, when runninga benchmark program compiled with no problem, I found the following message
"fortrtl: severe(400): fort: (2): Subscript #1 of the array EX has value 18711 which is greater than upper bound of 18624"
How can I extend this upper bound ?
Is there any idea ?
thanks
0 Kudos
1 Reply
durisinm
Novice
511 Views

Change the declaration of the EX array to include the number of elements you need.

For example, if the declaration is INTEGER::EX(18624), then change it to INTEGER::EX(18711).

It sounds to me as if this benchmark code isn't your own. If that's the case, you'll have to study the code to find where array EX is declared.

Mike D.

0 Kudos
Reply