Tagged Questions
4
votes
1answer
143 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 ...
3
votes
1answer
706 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 ...
1
vote
1answer
316 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
169 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
1k views
Fortran pointer functions: why does this code's behavior depend on the order of function calls?
Context
The toy Fortran code posted below calls two pointer functions. That is, both functions return a pointer. In fact, they're both array pointers. They both attempt to do the same thing, which ...
0
votes
2answers
131 views
How to debug Fortran 90 compile error “There is no specific subroutine for the generic 'foo' at (1)”?
I am trying to write Fortran 2003 bindings to CUFFT library using iso_c_bindings module, but I have problems with cufftPlanMany subroutine (similar to sfftw_plan_many_dft in FFTW library).
The ...
0
votes
1answer
49 views
undefined symbol: vmldExp2
I am using f2py and Intel fortran compiler to wrap some fortran code which calls some math library like dexp and dpow.
The compilation went smoothly without reporting any err, but when I attempted ...
0
votes
3answers
90 views
Incorrect file permissions when calling C's open() function from fortran
I have a fortran program which calls a C function and opens a file using open()
main.f90:
PROGRAM TEST
integer :: oflag, mode
!Set oflag to O_CREAT|O_RDWR
oflag ...
0
votes
2answers
321 views
Reading a string with spaces in Fortran
Using read(asterisk, asterisk) in Fortran doesn't seem to work if the string to be read from the user contains spaces.
Consider the following code:
character(Len = 1000) :: input = ' '
...
0
votes
3answers
226 views
Functional Arguments in FORTRAN
Problem
I am trying to have a function be the argument to another function however I keep getting the error:
Error: Internal procedure 'polytrope' is not allowed as an actual argument at (1)
Code
...
0
votes
4answers
554 views
Force explicit variable declaration with gfortran
I am linking some fortran code (f90) from matlab using mex and I am having matlab freeze occasionally.
In the past, I had freezing happening due to mismatch between data types (say integer*4 vs ...
-1
votes
1answer
117 views
How to use MPI (openMPI or MPICH2) with minGW - GNU gfortran compiler
I am using the eclipse PTP IDE to develop MPI code, I want to be able to compile MPI on windows, it seems to provide c++ and c binding, but I am writing using fortran and gfortran compiler and would ...