CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

F77 Compile.

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 16, 2004, 12:46
Default F77 Compile.
  #1
CFD User.
Guest
 
Posts: n/a
Hello,

I am having trouble using a fortran f77 compiler to compile my code. If I include a statement that writes (for example) 'hello' to screen, the code fails (i.e, something strange occurs to other variables in this routine). If I don't write this line, everything is fine. If I write this line elsewhere everything is fine. I use f77 -g -check_bounds and I am not told anything aobut overflows etc that may be causing this bizarre problem. Does anyone have any ideas? I hope I have asked in the right place.
  Reply With Quote

Old   November 16, 2004, 21:01
Default Re: F77 Compile.
  #2
Zeng
Guest
 
Posts: n/a
(1) try to debug by using gdb etc. (2) change a fortran compiler, maybe you can get more useful information.
  Reply With Quote

Old   November 17, 2004, 09:27
Default Re: F77 Compile.
  #3
CFD User.
Guest
 
Posts: n/a
Thank you. I have done both. Changing compiler gets rid of the problem (at least it seems to), but it still doesn't explain why I was having problems with the other one.

Thanks for your comments.
  Reply With Quote

Old   November 17, 2004, 10:33
Default Re: F77 Compile.
  #4
Tom
Guest
 
Posts: n/a
I've had similar problems (usually in reverse - the code crashes so I insert a write statement and it then miraculously works). The cause of the problem is usually a memory/alignment fault. A common cause is that, for example, you have a subroutine that takes 3 arguments but is called with only 2 - another possibility is that an array passed to the subroutine is smaller than it is declared within the subprogram.

  Reply With Quote

Old   November 17, 2004, 12:45
Default Re: F77 Compile.
  #5
Ananda Himansu
Guest
 
Posts: n/a
if the problem disappeared under a different compiler, it is possibly due to a compiler bug, though this possibility is much unlikelier than the probability of a bug in CFD User's own program.

Another possibility in addition to those Tom mentioned, is that writing to the screen at that juncture might interfere with an already open logical unit 5 which has been previously associated with an input file. I had this happen to a colleague just last week. Under the old compiler, put a write statement in exactly the same place that causes the problem, but write to a different unit number, say 44, instead of to the screen (unit 6 or *). If the program does not then misbehave, look for whether a disk file that has previously been opened for reading as logical unit 5 is later read from for input. The symptom would be that your previous error message would refer to an end-of-file condition on an attempted read (because the write statement effectively truncates the input file at the file pointer position after write).

CFD User, you do mention that placing a write statement elsewhere in the program does not produce the bug symptoms. You do not mention whether the location that does result in bug symptoms is in within a DO loop or an IF block?

If you find the cause of the bug, please let us know the cause. Subtle bugs like this are interesting to many programmers.
  Reply With Quote

Old   November 17, 2004, 21:12
Default Re: F77 Compile.
  #6
Zeng
Guest
 
Posts: n/a
Based on your information, maybe, you have used a undefined (or without intialization) variable.

Sincerely, Zeng
  Reply With Quote

Old   November 18, 2004, 06:51
Default Re: F77 Compile.
  #7
CFD User.
Guest
 
Posts: n/a
Hi, Thank you all for you comments.

That is interesting Zeng. I discovered a variable being used in another routine which was used before it had been defined or initialised. I didn't think this was thec asue, but fixing this problem (which occurs in 5 or 6 places in the routine!) seems to fix the crazy problem! How would sometihing being undefined in one subroutine interfer with values apparently unrelated values in another...and then, only when I use write(*,*) statements or write(23,*) (write to file) statements at particular locations! Its all a bit odd.
  Reply With Quote

Old   November 18, 2004, 08:29
Default Re: F77 Compile.
  #8
Steve
Guest
 
Posts: n/a
Odd behaviour that you can't quite understand and that goes away if you switch compiler is nearly always related to memory trampling or uninitialised variables. It really pays to compile on many different platforms. It's often the case that a non-fatal (but annoying) error on one platform may show up as a fatal (and therefore debuggable) error elsewhere.
  Reply With Quote

Old   November 18, 2004, 08:55
Default Re: F77 Compile.
  #9
ag
Guest
 
Posts: n/a
The variable will have some value when it gets used the first time - just not the value you intend it to have. Without initialization it will have some value that comes from the element of memory it gets assigned during compilation, and when you put a write statement in, that assignment will shift so that the non-initialized value will change just enough to allow the code to work.
  Reply With Quote

Old   November 19, 2004, 14:58
Default Re: F77 Compile.
  #10
Zeng
Guest
 
Posts: n/a
Glad to know you have fixed your problem. The assigned value without initialization depends on your compiler and working enviroment, and it therfore looks very strange. You are luck, becuase you have found error. It is also possible that the program could work without any error message, but the result is a non-physical solution, and it is very diffcult to fix the error caused by uninitialized varables.
  Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
ATTN ALL: SOLUTON TO UDF COMPILE PROBLEM Rizwan Fluent UDF and Scheme Programming 40 March 18, 2018 06:05
How to compile OpenFOAM-1.7.x on CrunchBang linux 10 gwierink OpenFOAM Installation 0 April 5, 2011 04:38
PV3FoamReader compile error.... PEM_GUY OpenFOAM Installation 6 April 5, 2010 17:22
Can someone PLEASE document the development version installation bernd OpenFOAM Installation 76 November 14, 2008 21:51
I can't compile UDS by Absoft Fortran 7.5 Thitikorn FLUENT 2 July 27, 2002 07:00


All times are GMT -4. The time now is 19:13.