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

the error

zhizildx
Beginner
439 Views

Hi,everyone

The program has stoped with the error.What is the problem?Could anyone help me?Thanks

 

forrtl: severe (64): input conversion error, unit 25, file /home/ld/RAMS/run/notopo-S-g1.vfm
Image PC Routine Line Source
rams 0000000000672E36 Unknown Unknown Unknown
rams 0000000000671DC8 Unknown Unknown Unknown
rams 000000000062067E Unknown Unknown Unknown
rams 00000000005E3975 Unknown Unknown Unknown
rams 00000000005E3262 Unknown Unknown Unknown
rams 0000000000603842 Unknown Unknown Unknown
rams 00000000005D4160 Unknown Unknown Unknown
rams 000000000047B2DD Unknown Unknown Unknown
rams 0000000000477AA5 Unknown Unknown Unknown
rams 000000000051B2D2 Unknown Unknown Unknown
rams 000000000040E194 Unknown Unknown Unknown
rams 000000000040A2D7 Unknown Unknown Unknown
rams 0000000000409822 Unknown Unknown Unknown
libc.so.6 0000003C8E61D8A4 Unknown Unknown Unknown
rams 0000000000409769 Unknown Unknown Unknown
the compile option

CMACH=PC_LINUX1
F_COMP=ifort
F_OPTS=-O2 -pc 64 -free
#F_OPTS=-FR -fp -Vaxlib -save -tpp6 -O3 -w90 -w95 -w -g
C_COMP=gcc
C_OPTS=-O3 -DUNDERSCORE -DLITTLE
LOADER=ifort
LOADER_OPTS=-L/usr/local/NAG/fll6i21dcl/lib -lnag_nag -Bdynamic -lblas -lpthread
C_LOADER=gcc
C_LOADER_OPTS=
#LIBS=
LIBS=-lsvml -lpthread
MOD_EXT=mod

0 Kudos
1 Reply
Steven_L_Intel1
Employee
439 Views

The problem is that your program was doing a formatted READ from unit 25 and encountered a value which was not valid for the corresponding edit descriptor. If you add -traceback you should be able to identify the source and line of the offending READ. You'll then need to look at the data file and match it with the READs to see what the problem is.

0 Kudos
Reply