Update 10/26
Frontera
Have the planet problem compiling, but running into runtime errors that appear to be related to the new Intel Fortran runtime library version. Specifically,
forrtl: severe (257): formatted I/O to unit open for unformatted transfers, unit 76, file /work/05515/adebrech/frontera/ChargeExchange_high/global.data Image PC Routine Line Source libHYPRE-2.18.2.s 00002B3589B43B86 for__io_return Unknown Unknown astrobear 00000000019B4FBE Unknown Unknown Unknown astrobear 00000000019704BE amrcontrol_mp_rea 218 amr_control.cpp.f90 astrobear 0000000001960424 amrcontrol_mp_amr 72 amr_control.cpp.f90 astrobear 00000000019837E8 scrambler_IP_astr 63 scrambler.cpp.f90 astrobear 00000000019835A6 MAIN__ 51 scrambler.cpp.f90 astrobear 000000000040E592 Unknown Unknown Unknown libc-2.17.so 00002B358BF26555 __libc_start_main Unknown Unknown astrobear 000000000040E4A9 Unknown Unknown Unknown
Relevant code:
! Open data file (quit if not successful). OPEN(UNIT=GLOBAL_DATA_HANDLE,FILE=GLOBAL_DATA_FILE,FORM='formatted') ! I added the FORM specifier to see if that would fix it ! Read in global data values. READ(GLOBAL_DATA_HANDLE,NML=GlobalData)
Haven't gotten past this one yet, but I suspect something similar will happen with future read attempts.
When I attempt to INQUIRE about GLOBAL_DATA_HANDLE I get an even stranger message:
inquire(UNIT=GLOBAL_DATA_HANDLE, access=acc, name=filename, form=formatType, exist=exists)
forrtl: severe (257): formatted I/O to unit open for unformatted transfers, unit -1, file /proc/265613/fd/1 Image PC Routine Line Source libHYPRE-2.18.2.s 00002B69A5BBBB86 for__io_return Unknown Unknown astrobear 00000000019C6A58 Unknown Unknown Unknown astrobear 000000000196FF02 amrcontrol_mp_rea 219 amr_control.cpp.f90 astrobear 0000000001960424 amrcontrol_mp_amr 72 amr_control.cpp.f90 astrobear 0000000001983AD0 scrambler_IP_astr 63 scrambler.cpp.f90 astrobear 000000000198388E MAIN__ 51 scrambler.cpp.f90 astrobear 000000000040E592 Unknown Unknown Unknown libc-2.17.so 00002B69A7F9E555 __libc_start_main Unknown Unknown astrobear 000000000040E4A9 Unknown Unknown Unknown
More investigation leads me to conclude that there's something wrong with I/O in general. I've tried re-chowning and re-chmoding all of the .data files, but no change.
print *, 'open status is ', iErr
forrtl: severe (257): formatted I/O to unit open for unformatted transfers, unit -1, file /proc/271281/fd/1 Image PC Routine Line Source libHYPRE-2.18.2.s 00002AD3EA073B86 for__io_return Unknown Unknown astrobear 00000000019C6828 Unknown Unknown Unknown astrobear 000000000196FE81 amrcontrol_mp_rea 218 amr_control.cpp.f90 astrobear 0000000001960424 amrcontrol_mp_amr 72 amr_control.cpp.f90 astrobear 00000000019838A4 scrambler_IP_astr 63 scrambler.cpp.f90 astrobear 0000000001983662 MAIN__ 51 scrambler.cpp.f90 astrobear 000000000040E592 Unknown Unknown Unknown libc-2.17.so 00002AD3EC456555 __libc_start_main Unknown Unknown astrobear 000000000040E4A9 Unknown Unknown Unknown
If no one else has thoughts, I'll shoot TACC support another message.
Comments
No comments.