- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page