- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
hello guys,
when I use ifort -o progrmaname *.f90 , I get an answer :
remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'.
3000 format(i4,4(1x,i2.2),2x,f13.6,i3,4(2x,e18.12))
remark #8290: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+3'.
read(fidin,"(3x,i4,4(1x,i2),2x,f10.8,1x,i7)")yr_start,mon_start,dy_start,hr_start,&
has it any influence on my program running? cause I run it well in other platform like WIN7
how can I deal with it?
best regards
PS: i installed Intel Fortran Composer XE 2011 for Linux on my Fedora15 system.
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is an informational message warning you that F10.8 or E18.12 may not be wide enough to express values - especially if there is a negative value. It will have no effect on the running of the program.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there a way to turn off this particular warning? We are aware and the warnings get in the way of recognizing other warnings that might be of concern to us.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
-diag-disable 8291

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