Feb 16, 2010 #1 alikami Technical User Jan 20, 2010 4 CN I am using Allan Miller code to convert F77 to F90. it gives this error: no of lines read =877 run-time error F6717 - out of memory please help.. regards ali
I am using Allan Miller code to convert F77 to F90. it gives this error: no of lines read =877 run-time error F6717 - out of memory please help.. regards ali
Feb 16, 2010 #2 xwb Programmer Jul 11, 2002 6,828 GB It is doing lots of allocates without deallocates. Presumably, it needs to store everything in memory: probably one for F77 and one for F90. You will need at least enough memory to store two copies of your program in memory. Try breaking up the subroutines into one file each. Upvote 0 Downvote
It is doing lots of allocates without deallocates. Presumably, it needs to store everything in memory: probably one for F77 and one for F90. You will need at least enough memory to store two copies of your program in memory. Try breaking up the subroutines into one file each.
Feb 16, 2010 Thread starter #3 alikami Technical User Jan 20, 2010 4 CN Thanks . Is it possible for you to convert it for me? I will send you both codes I am sorry if , asking too much.. Regards Upvote 0 Downvote
Thanks . Is it possible for you to convert it for me? I will send you both codes I am sorry if , asking too much.. Regards
Feb 16, 2010 #4 xwb Programmer Jul 11, 2002 6,828 GB Sorry - I can't upload/download anything at work. Upvote 0 Downvote