Tagged Questions

gfortran is the GNU Fortran compiler

learn more… | top users | synonyms

6
votes
1answer
133 views

How to get gfortran to do INTEGER - LOGICAL conversion

According to this, gfortran can do integer-logical conversion, but I'm getting this error: if (.not.bDropped.and.(zz_unif01() .lt. (1 - (Test_Dru 1 Error: ...
5
votes
3answers
920 views

How to find out which compiler was used: g77 or gfortran

I'm compiling library for a private project, which depends on a number of libraries. Specifically one of the dependencies is compiled with Fortran. On some instances, I've seen the dependency compiled ...
4
votes
1answer
141 views

Fortran accuracy and speed vs. C

This subject has probably been discussed hundreds of times. I'm not trying to claim any language is worse or better. I'm just trying to learn how to accelerate my C codes. So here are two codes to ...
4
votes
2answers
128 views

Multiple definition of main: linking fortran with C++

I would like to write a C++ program that calls the mvndst_() subroutine from http://www.math.wsu.edu/faculty/genz/software/fort77/mvndstpack.f On Linux, if I create test.cc: extern "C" { int ...
4
votes
3answers
1k views

Turning off Hyper-Threading in 6-core Intel Xeon

We got a 12-core MacPro to do some Monte Carlo calculations. Its Intel Xeon processors have Hyper-Threading (HT) enabled, so in fact there should be 24 processes running in parallel to make them fully ...
3
votes
1answer
580 views

homebrew install for gfortran fails for xcode 4.2

I have xcode4.2 installed and because of that, I am unable to get gfortran installed via homebrew. Here's the error: calvin$ brew -v install gfortran Homebrew 0.8 ==> Downloading ...
3
votes
1answer
602 views

Building R package getting error “ld: cannot find -lgfortran ”

I'm trying to install the package lars. Ubuntu 11.04 Natty 64-bit. From building I get: * installing *source* package âlarsâ ... ** libs gfortran -fpic -O3 -pipe -g -c delcol.f -o delcol.o gcc ...
3
votes
2answers
125 views

What do I do about a FORTRAN intrinsic that was not part of the standard?

I'm trying to get a legacy FORTRAN code working by building it from source using gfortran. I have finally been able to build it successfully, but now I'm getting an out-of-bounds error when it runs. ...
3
votes
2answers
885 views

How to override a structure constructor in fortran

Is it currently possible to override the structure constructor in Fortran? I have seen proposed examples like this (such as in the Fortran 2003 spec): module mymod type mytype integer :: x ...
3
votes
1answer
702 views

What flags do you set for your GFORTRAN debugger/compiler to catch faulty code?

i think i wont find that in any textbook, because answering this takes experience. i am currently in the stage of testing/validating my code / hunting bugs to get it into production state and any ...
3
votes
4answers
711 views

Are Fortran control characters (carriage control) still implemented in compilers?

In the book Fortran 95/2003 for Scientists and Engineers, there is much talk given to the importance of recognizing that the first column in a format statement is reserved for control characters. I've ...
3
votes
1answer
485 views

Associated pointers in derived type? gFortran vs. Intel

I would like to check if a pointer inside a derived type has already been defined or not. I wrote the following simple code to show you my problem: program test implicit none type y real(8), ...
2
votes
2answers
44 views

Why is the type not accessible?

I'm trying to return a type from a fortran function. This is the code. module somemodule implicit none ! define a simple type type sometype integer :: someint end type sometype ! define an ...
2
votes
2answers
50 views

Converting Intel Style Preprocessor to work with gfortran

The source code I am working with was originally written for the Intel Fortran compiler so it has preprocessor directives such as !DEC$ATTRIBUTES DLLEXPORT::MYDLL !DEC$ATTRIBUTES ...
2
votes
1answer
58 views

interprocedural analysis

Does gcc (C, C++ and Fortran compilers in particular) support interprocedural analysis to improve performance? If yes, which are the relevant flags? http://gcc.gnu.org/wiki/InterProcedural says the ...
2
votes
1answer
135 views

How to use break command in idb(intel compiler debugger) for fortran executable file?

I am new to the idb/gdb debugger so I am apologize for the bad questions in advance. I am trying to set a breakpoint in a function called set_time_i which is in a file called time_manager.F90 by using ...
2
votes
1answer
97 views

Relation of GNU f77/gfortran and f2c?

What is the relation of g77/gfortran and f2c today? Is there still development going on? Is one benefiting from the others advances (like bugs and performance)? Who is developing f2c (if it's not ...
2
votes
2answers
183 views

Fortran 77 handling C++ memory allocations

I'm trying to write a C++ program that utilizes a few tens of thousands of lines of Fortran 77 code, but running into some strange errors. I'm passing three coordinates (x,y,z) and the address of ...
2
votes
1answer
113 views

“DATA INT / 'STRING' /” problem when compiling with gfortran

I have some old (~1995) legacy fortran code which is compiled with g77 compiler and fails on gfortran. The problem is in following lines (incompatible types conversion, character to integer): INTEGER ...
2
votes
1answer
520 views

Force gfortran to stop program at first NaN

To debug my application (fortran 90) I want to turn all NaNs to signalling NaN. With default settings my program works without any signals and just outputs NaN data in file. I can find the point, ...
2
votes
1answer
295 views

How to compile in gfortran in case Sensitive mode?

Is it possible to compile a fortran 90/95 code in gfortran with Case Sensitive? I searched the manuals, but couldn't find any flag or option I can give to gfortran to make it case sensitive. I want to ...
2
votes
1answer
558 views

gfortran Error: Nonnegative width required in format string at (1)

The code in question is this: subroutine PG_TLab_Write(c30,r,d) implicit none character*30 c30,leftjust real*4 r integer*4 d,k if (d.eq.0) then write(c30,'(i30)') nint(r) elseif ...
2
votes
5answers
1k views

F77: problem to compile with g77 a program which was normally compiled with Absoft compiler

I am not a Fortran programmer (just a short experience), but I need to compile a program partly written in F77. Someone has compiled it with Absoft compiler before me, but now I need to repeat the ...
2
votes
3answers
2k views

How do I flush output to file after each write with a gfortran Fortran 90 program?

I am running a loop in a Fortran 90 program that outputs numerical values to an output file for each iteration of the loop. The problem is that the output is not saved to the file but every so many ...
2
votes
4answers
1k views

Writing and calling pure subroutines in Fortran 90 using gfortran

When writing and calling pure subroutines in Fortran 90 using gfortran, how do I find out why the compiler emits this error? Error: Subroutine call to XXXX at (1) is not PURE I'll try to pose my ...
2
votes
1answer
1k views

Mixed language statically linking with gfortran and gcc

I have some code written in C and Fortran that I want to compile into a statically-linked executable. If I compile the code dynamically (using the -fno-underscoring option for gfortran), it all works ...
2
votes
1answer
2k views

Compilation error while porting from gfortran to ifort

I'm trying to port a program from gfortran to ifort (Intel Fortran Compiler 11). I'm stuck with two files that only compile with gfortran: gfortran -x f77 -c daedrid.ff gfortran -x f77-cpp-input -c ...
2
votes
1answer
803 views

BLAS subroutines dgemm, dgemv and ddot doesn't work with scalars?

I have a Fortran subroutine which uses BLAS' subroutines dgemm, dgemv and ddot, which calculate matrix * matrix, matrix * vector and vector * vector. I have m * m matrices and m * 1 vectors. In some ...
1
vote
1answer
45 views

Fortran: IO in pure procedures

I'm trying to incoporate error checking within a pure procedure I am writing. Something like: pure real function func1(output_unit,a) implicit none integer :: a, output_unit if (a < ...
1
vote
2answers
147 views

OpenMP and parallellization problem

I am doing research on computational electromagnetics laboratory with supercomputers. Here, we are working with clusters to solve problems includes over 500M unknowns. At this point we have a problem ...
1
vote
1answer
81 views

Unable to open a cgns file

Okey, this is not a core programming question; it is more of a question regarding cgns (CFD general notational system) API. I've exported a grid/mesh file from ANSYS Fluent (which was first created ...
1
vote
1answer
105 views

Undefined Symbols when linking against a mixed C and Fortran in OS X 10.6.4

I'm trying to compile a code (not mine) that consists of mixed Fortran and C source files, which are compiled into a library. This library can either be linked against directly, or (more usefully) ...
1
vote
2answers
41 views

Question about Character Variable Arguments to OpenMP Directives in Fortran

I am currently trying to parallelize some multigrid code written in Fortran using OpenMP, and I have found that the OpenMP scheduling clauses make a huge impact on performance. Recall that the OpenMP ...
1
vote
1answer
82 views

are gfortran and g95 both still supported?

I have heard that g95 is no longer active. Which compiler is now the appropriate one to use (I would be grateful for an up-to-date overview)
1
vote
2answers
111 views

Inline keyword gfortran

Is there any Fortran keyword equivalent to the C "inline" keyword? If some compiler-specific keyword exist, is there any for gfortran?
1
vote
1answer
150 views

Good FORTRAN 77 Books (free/otherwise) [closed]

I'm looking for some good FORTRAN 77 books. I'm not looking for FORTRAN books such as this one which assumes that you are entirely new to programming and goes on explaining things that you already ...
1
vote
1answer
108 views

Java Swing executing gFortran code

I was wondering is there anyway for Java / Swing code to execute gFortran program on ubuntu/linux platform? Anyone has some idea on how this could be done ?
1
vote
1answer
311 views

Iterating over a FORTRAN character array

Ok, I'm having mucho trouble with the following Fortran 90 code. The program tester should create a character array called input, initialize all the entries to the space character, then get some ...
1
vote
1answer
168 views

Progress bar. [gfortran vs ifort]

I have wrote a genetic algorithm in fortran to be able to compute with a long double precision a generic fitness function. the first version (double precision) was wrote for gfortran where i have ...
1
vote
1answer
157 views

using PowerShell with Code::Blocks

My machine is Win 7. How can I change in Code::Blocks the shell from cmd to PowerShell? Code:Blocks use the cmd as a shell, but I want that he will use the PowerShell instead. How can I do that? my ...
1
vote
1answer
102 views

gcc/gfortran compiler flag/option to stop generation of any floating point instruction

I am doing some analysis using PIN/LLVM and I was wondering if there is anyway to switch off the generation of floating point x87 co-processor instructions such as FMUL, FLD etc. Essentially ...
1
vote
1answer
391 views

Zero sized arrays and array bounds checking

When compiled with either GNU Fortran (v4.4.3) or Sun Studio F95 (v8.3) and no array bounds checking the following program runs without error. However, when array bounds checking is switched on ...
1
vote
4answers
269 views

does gFortran's cpu_time() return user time, system time, or the sum of both?

I need to do some timing to compare the performance of some Fortran Vs C code. In C I can get both user time and system time independently. When using gFortran's cpu_time() what does it represent? ...
1
vote
1answer
670 views

How to install gfortran under macports and use it with cmake?

hope someone can me help. I need to compile some code. I installed everything I needed with macports, in /opt/local/. And it's working how it should, except gFortran. I get this error: ld: library ...
1
vote
4answers
445 views

Fortran: differences between generated code compiled using two different compilers

I have to work on a fortran program, which used to be compiled using Microsoft Compaq Visual Fortran 6.6. I would prefer to work with gfortran but I have met lots of problems. The main problem is that ...
1
vote
2answers
97 views

subprocess.Popen and buffered process output

From inside python code, I want to run a binary program that gets its parameters from stdin. Using the subprocess module, this should be straightforward: import subprocess command = [ 'my_program' ] ...
1
vote
2answers
500 views

Why will this code compile using ifort compiler and not when using gfortran compiler? Help!

I'm rewriting some code to make a program compile with the gfortran compiler as opposed to ifort compiler I usually use. The code follows: _Subroutine SlideBits (WORD, BITS, ADDR) Implicit None ...
1
vote
3answers
903 views

Undefined Reference, Error Linking Plplot with GFortran

I tried to compile the following Fortran code found at http://techlogbook.wordpress.com/200...-kubuntu-8-04/ program testplplot2d use plplot implicit none real(plflt),dimension(6) :: x,y ...
1
vote
1answer
122 views

Building multiple ports (using macports) at the same time

I'm trying to build gcc45 +gfortran on my macbook pro core duo 2 and obviously it is taking a while (A few hours I'm told). I'm wondering if its possible (safe) if I build some other ports / packages ...
1
vote
2answers
198 views

Why is this a function declared inside the module and then used somewhere else in the same module not seen by the linker?

I have a function (in case anyone is interested, it is this function) in a module that looks like this MODULE MYMODULE IMPLICIT NONE ! Some random stuff CONTAINS CHARACTER*255 ...

1 2