20
votes
16answers
3k views
Is Fortran faster than C?
From time to time I read that Fortran is or can be faster then C for heavy calculations. Is that really true? I must admit that I hardly know Fortran, but the Fortran code I have seen so far did not …
8
votes
9answers
521 views
Fortran as a Good Choice
Is there any good reason to develop a new software project with Fortran anymore?
8
votes
5answers
360 views
How does BLAS get such extreme performance?
Out of curiosity I decided to benchmark my own matrix multiplication function versus the BLAS implementation... I was to say the least surprised at the result:
Custom Implementation, 10 trials of
…
8
votes
7answers
717 views
Prototyping hybrid Python code
I have been mulling over writing a peak fitting library for a while. I know Python fairly well and plan on implementing everything in Python to begin with but envisage that I may have to re-implement …
7
votes
2answers
526 views
Visual studio 2008 code snippets for another language
Is there a way to define code snippets for another language, other then the default ones (C#, VB ...) in VS 2008 ?
I'm using Intel's fortran compiler with Visual studio, and its integration in it is …
7
votes
8answers
850 views
Learning FORTRAN In the Modern Era
I've recently come to maintain a large amount of scientific calculation-intensive FORTRAN code. I'm having difficulties getting a handle on all of the, say, nuances, of a forty year old language, …
6
votes
8answers
321 views
Is the return worth the investment in learning Fortran?
At my current place of employment there are a handful of maybe two to three employees that add and maintain functionality of legacy fortran77 code. When I was first hired I briefly considered trying …
6
votes
2answers
1k views
Calling 32bit Code from 64bit Process
I have an application that we're trying to migrate to 64bit from 32bit. It's .NET, compiled using the x64 flags. However, we have a large number of DLLs written in FORTRAN 90 compiled for 32bit. …
5
votes
13answers
504 views
The reading list for scientific programmer
Hi all,
I am working to become a scientific programmer. I have enough background in Math and Stat but rather lacking on programming background. I found it very hard to learn how to use a language for …
5
votes
8answers
315 views
Does anyone use any incarnation of Fortran in a real project?
Hi, all,
Several of my university teachers use Fortran. New Fortran specifications and extensions (like HPF) appear. Fortran even takes 26th place in the TIOBE ranking list. I've got interested in …
5
votes
6answers
1k views
Conversion of Fortran 77 code to C++
Has anyone converted a large (ours is 550,000 lines) program of Fortran 77 code to C++ ? What pitfalls did you run into ? Was the conversion a success ? Did you use a tool like for_c ( …
4
votes
3answers
431 views
How do you USE Fortran 90 module data
Let's say you have a Fortran 90 module containing lots of variables, functions and subroutines. In your USE statement, which convention do you follow:
explicitly declare which …
4
votes
6answers
316 views
Modeling and Simulation Programming Language
I work with many different models and simulations. Some of the older models and simulations are written in FORTRAN. Some of those models have been converted to C++, but the current trend is to …
4
votes
2answers
282 views
How to test if matrix is diagonal?
I need to test if one variance matrix is diagonal. If not, I'll do Cholesky LDL decomposition. But I was wondering which would be most reliable and fastest way to test is matrix diagonal? I'm using …
4
votes
2answers
117 views
Autodocumentation type functionality for Fortran?
In the past I've used Doxygen for C and C++, but now I've been thrown on Fortran project and I would like to get a quick all encompassing look at the architecture.
In the past I've found reverse …
