active questions tagged fortran - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:16:42Z http://stackoverflow.com/feeds/tag/fortran http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1784124/converting-matlab-code-to-fortran 2 converting MATLAB code to Fortran Kevin 2009-11-23T16:06:37Z 2009-11-28T01:56:44Z <p>I a medical researcher with code written in MATLAB 2009b that runs very slowly because of a self-referential loop (not sure of the programming lingo here), i.e., the results of the first iteration is used during the second iteration, etc. (I have vectorized it to a fare-thee-well. I have run the Profiler.)</p> <p>I'd like to convert the slow parts of the code to a mex function. I learned Fortran in the early 1970s but haven't used it since. The code I need to convert doesn't do anything fancy, it is just a long numerical calculation.</p> <p>My question is: what would be the easiest-to-relearn version of Fortran adequate for this purpose, and what compiler works best on the Intel Mac for this? I found information comparing syntax in MATLAB to Fortran 90 for example, and the conversion doesn't look like it would be too daunting for me. However, again, I am no programmer.</p> <p>I am using a MacBook Pro with OS 10.6.</p> <p>Appreciate any help, thanks.</p> http://stackoverflow.com/questions/1158690/variables-not-initialized-in-fortran-2003 0 Variables not initialized in Fortran 2003 ravi 2009-07-21T11:40:18Z 2009-11-24T17:48:54Z <p>why the variables are not initializing to zero in fortran 2003 when comapared with f90?</p> <p>i have a variable in a funtion from a file. its initialized to 0. I want to use it another funtion then it shows a garbage value. even for global variables also. Is there any option I need to set for fortran 2003 compiler?</p> http://stackoverflow.com/questions/1743016/fortran-and-mysql 0 Fortran and mysql Jon Romero 2009-11-16T15:46:36Z 2009-11-16T16:11:43Z <p>Is there a library (opensource), so I can access MySQL in Fortran?</p> http://stackoverflow.com/questions/1725753/how-to-make-a-fortran-executable-that-runs-on-mac-os-x-10-5-and-10-6 0 How to make a fortran executable that runs on Mac OS X 10.5 and 10.6 kk 2009-11-12T22:06:36Z 2009-11-12T22:10:26Z <p>I'd like to compile a fortran code with gfortran so that it will work on both Mac OS X 10.5 and 10.6. Is there a way to do this? I tried compiling on 10.6 and get this message when I run the executable on 10.5:</p> <p>dyld: unknown required load command 0x80000022 Trace/BPT trap</p> http://stackoverflow.com/questions/1702905/tutorial-on-generating-msi 1 tutorial on generating MSI Dave 2009-11-09T18:38:31Z 2009-11-10T17:36:09Z <p><strong>Exact duplicate:</strong> <a href="http://stackoverflow.com/questions/3767/what-is-the-best-choice-for-building-windows-installers">What is the best choice for building Windows installers</a><br> <strong>Exact duplicate:</strong> <a href="http://stackoverflow.com/questions/173307/best-windows-installation-file-creator">Best Windows installation file creator</a> </p> <p>I have a customer who is new to generating VB.NET programs that run Watcom FORTRAN programs. (Yes FORTRAN is alive in Numerical Control Programming) He is attempting to install the program on another computer that doesn't necessarily have the libraries. <br> Is there a good tutorial for .NET on generating MSI files? <br> He needs to install both and the necessary extras through a simple installation. (preferably without a sub-installation)</p> http://stackoverflow.com/questions/1693345/tool-for-program-statistics 3 Tool for program statistics Davide 2009-11-07T15:08:05Z 2009-11-07T15:21:09Z <p>Is there a tool which is able to parse my source code (fortran, C or C++) and return statistics such as the number of loops, the average loop size, the number of functions, the number of function calls, the number, size and type of arrays, variables, etc ?</p> <p>Something similar to <a href="http://ctuning.org/wiki/index.php/CTools%3AMilepostGCC%3AStaticFeatures" rel="nofollow">this</a> which does not run easily on my architecture</p> http://stackoverflow.com/questions/1678364/fortran-compiler-that-would-work-with-windows-azure 0 Fortran compiler that would work with Windows Azure? MikeJ 2009-11-05T04:31:53Z 2009-11-05T20:55:03Z <p>Does anyone know of a Fortran compiler that can be used inside a Windows Azure project? I am ultimately looking to take a fortran code I have upgraded with MPI and get it to run inside Azure. </p> <p>I can run the code already on EC2 but integrating a web ui has been klunky as there are a lot of moving parts - IIS, mpi nodes and the like that I would like to filter out. </p> http://stackoverflow.com/questions/880741/compaq-visual-fortran-install-on-vista 0 Compaq Visual Fortran Install on Vista? JustADude 2009-05-19T02:35:12Z 2009-11-05T11:01:52Z <p>Anyone successfully able to install Compaq Visual FORTRAN 6.x on Vista?</p> <p>Tried the other day, but did not have any luck, so just wondering if obsolescence is upon this ol' compiler. </p> <p>Thanks again.</p> http://stackoverflow.com/questions/1671682/the-reading-list-for-scientific-programmer 3 The reading list for scientific programmer leon 2009-11-04T04:32:56Z 2009-11-04T19:57:03Z <p>Hi all,</p> <p>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 scientific programming because most of the reference for SP are close to trivial. </p> <p>My work involves statistical/financial modelling and none with physics model. Currently, I use Python extensively with numpy and scipy. Done R/Mathematica. I know enough C/C++ to read code. No experience in FORTRAN. </p> <p>I dont know if this is a good list of language for a scientific programmer. If this is, what is a good reading list for learning the <em>syntax</em> and <em>design pattern</em> of these languages in scientific settings. </p> http://stackoverflow.com/questions/1668899/fortran-32-bit-64-bit-performance-portability 0 Fortran: 32 bit / 64 bit performance portability thrope 2009-11-03T17:28:28Z 2009-11-03T19:01:47Z <p>I've been starting to use Fortran (95) for some numerical code (generating python modules). Here is a simple example:</p> <pre><code>subroutine bincount (x,c,n,m) implicit none integer, intent(in) :: n,m integer, dimension(0:n-1), intent(in) :: x integer, dimension(0:m-1), intent(out) :: c integer :: i c = 0 do i = 0, n-1 c(x(i)) = c(x(i)) + 1 end do end </code></pre> <p>I've found that this performs very well in 32 bit, but when compiled as x86_64 it is about 5x slower (macbook pro core2duo, snow leopard, gfortran 4.2.3 from r.research.att.com). I finally realised this might be due to using 32bit integer type instead of the native type, and indeed when I replace with integer*8, the 64 bit performance is only 25% worse than the 32bit one. </p> <p>Why is using a 32 bit integer so much slower on a 64 bit machine? Are there any implicit casts going on with the indexing that I might not be aware of?</p> <p>Is it always the case that 64 bit will be slower than 32 bit for this type of code (I was surprised at this) - or is there a chance I could get the 64 bit compiled version running the same speed or faster?</p> <p>(<strong>main question</strong>) Is there any way to declare a (integer) variable to be the 'native' type... ie 32 bit when compiled 32 bit, 64 bit when compiled 64 bit in modern fortran. Without this it seems like it is impossible to write portable fortran code that won't be much slower depending on how its compiled - and I think this means I will have to stop using fortran for my project. I have looked at kind and selected_kind but not been able to find anything that does this.</p> <p>[Edit: the large performance hit was from the f2py wrapper copying the array to cast it from 64 bit int to 32 bit int, so nothing inherent to the fortran.]</p> http://stackoverflow.com/questions/1579072/how-do-i-install-gfortran-via-cygwin-and-etexteditor-and-enable-ifort-under-win 0 How do I install gfortran (via cygwin and etexteditor) and enable ifort under Windows XP? bez 2009-10-16T16:31:41Z 2009-11-03T05:18:11Z <p>I'm a newbie in the Unix world so all this is a little confusing to me. I'm having trouble compiling some Fortran files under Cygwin on Windows XP.</p> <p>Here's what I've done so far:</p> <ol> <li>Installed the <a href="http://www.e-texteditor.com/" rel="nofollow">e text editor</a>.</li> <li>Installed <a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a> via the "automatic" option inside e text editor.</li> <li>I need to compile some Fortran files so via the "manage bundles" option I installed the Fortran bundle as well.</li> </ol> <p>However, when I select "compile single file" I get an error saying <code>gfortran</code> was missing, and then that I need to set the <code>TM_FORTRAN</code> variable to the full path of my compiler.</p> <p>I tried opening a Cygwin bash shell at the path mentioned (.../bin/gfortran), but the compiler was nowhere to be found.</p> <p>Can someone tell me how to install this from the Cygwin command line? Where do I need to update the <code>TM_FORTRAN</code> variable for the bundle to work?</p> <p>Also, how do I change the bundle "compile" option to work with <code>ifort</code> (my native compiler) on Windows? I've read the bundle file, but it is totally incomprehensible to me. Ifort is a Windows compiler, invoked simply by <code>ifort filename.f90</code>, since it is on the Windows path.</p> <p>I know this is a lot to ask of a first time user here, but I really would appreciate any time you can spare to help.</p> <p>Matjaz</p> http://stackoverflow.com/questions/1658805/fortran-how-do-i-read-the-first-character-from-each-line-of-a-text-file 1 Fortran: How do I read the first character from each line of a text file? Aaron 2009-11-01T23:39:53Z 2009-11-03T04:58:29Z <p>Hi, this is my first time trying to program in Fortran. I'm trying to write a program that prints the first 1476 terms of the <a href="http://en.wikipedia.org/wiki/Fibonacci%5Fnumber" rel="nofollow">Fibonacci sequence</a>, then examines the first digit of each term and stores the number of 1s, 2s, 3s, ..., 9s that occur in an array.</p> <p>The problem that I can't seem to figure out is how to read the first digit of each term. I've tried several things but am having difficulty with my limited knowledge of Fortran techniques. I write the terms to a text file and the idea is to read the first digit of each line and accumulate the respective number in the array. Does anyone have any suggestions of how to do this? </p> <p>Here is my code so far:</p> <p>(<strong>edit</strong>: I included the code I have for reading the file. Right now it just prints out 3.60772951994415996E-313, which seems like an address of some sort, because it's not one of the Fibonacci numbers. Also, it is the only thing printed, I expected that it would print out every line of the file...)</p> <p>(<strong>edit edit</strong>: After considering this, perhaps there's a way to format the writing to the text file to just the first digit. Is there a way to set the number of significant digits of a real number to one? :P)</p> <pre><code>subroutine writeFib(n) integer :: i real*8 :: prev, current, newFib prev = 0 current = 1 do i = 1, n newFib = prev + current prev = current current = newFib write(7,*) newFib end do return end subroutine subroutine recordFirstDigits(a) integer :: openStat, inputStat real*8 :: fibNum open(7, file = "fort.7", iostat = openStat) if (openStat &gt; 0) stop "*** Cannot open the file ***" do read(7, *, iostat = inputStat) fibNum print *,fibNum if (inputStat &gt; 0) stop "*** input error ***" if (inputStat &lt; 0) exit ! end of file end do close(7) end subroutine program test integer :: k, a(9) k = 1476 call writeFib(k) call recordFirstDigits(a) end program </code></pre> http://stackoverflow.com/questions/1649155/stack-overflow-in-fortran-program 2 Stack Overflow in Fortran program ghazooo 2009-10-30T10:58:45Z 2009-11-03T04:48:53Z <p>I have a problem with my simple Fortran program. I am working in Fortran 77, using Compaq Visual Fortran. The program structure must be in the form of a main and a subroutine, because it is part of a big program related to the finite element method.</p> <p>My issue is that I would like to set the values 10000 &amp; 10000 for <code>NHELE</code> and <code>NVELE</code> respectively, but when I run the code, the program stops and gives the following error:</p> <pre><code>forrt1: server &lt;170&gt;: program Exception - stack overflow </code></pre> <p>I've tried iteratively reducing the required values, until I reached 507 &amp; 507. At this point the code runs without errors.</p> <p>However, increasing the values to 508 &amp; 508 causes the same error to reappear.</p> <p>I think the problem is related to the subroutine <code>NIGTEE</code>, because when I rearrange the program without it, everything works fine.</p> <p>I've tried increasing the stack size to a maximum by using the menu <code>project&gt;&gt;settings&gt;&gt;link&gt;&gt;output&gt;&gt;reserve &amp; commit</code> but this didn't make a difference.</p> <p>How can I solve this problem?</p> <p>Here is my program:</p> <pre><code>PARAMETER(NHELE=508,NVELE=508) PARAMETER(NHNODE=NHELE+1,NVNODE=NVELE+1) PARAMETER(NTOTALELE=NHELE*NVELE) DIMENSION MELE(NTOTALELE,4) CALL NIGTEE(NHELE,NVELE,NHNODE,NVNODE,NTOTALELE,MELE) OPEN(UNIT=7,FILE='MeshNO For Rectangular.TXT',STATUS='UNKNOWN') WRITE(7,500) ((MELE(I,J),J=1,4),I=1,NTOTALELE) 500 FORMAT(4I20) STOP END SUBROUTINE NIGTEE(NHELE,NVELE,NHNODE,NVNODE,NTOTALELE,MELE) DIMENSION NM(NVNODE,NHNODE),NODE(4) DIMENSION MELE(NTOTALELE,4) KK=0 DO 20 I=1,NVNODE DO 20 J=1,NHNODE KK=KK+1 NM(I,J)=KK 20 CONTINUE KK=0 DO 30 I=1,NVELE DO 30 J=1,NHELE NODE(1)=NM(I,J) NODE(2)=NM(I,J+1) NODE(3)=NM(I+1,J+1) NODE(4)=NM(I+1,J) KK=KK+1 DO 50 II=1,4 50 MELE(KK,II)=NODE(II) 30 CONTINUE RETURN END </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/16067/prototyping-hybrid-python-code 8 Prototyping hybrid Python code Brendan 2008-08-19T12:32:38Z 2009-11-02T13:49:49Z <p>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 some core routines in a compiled language eventually.</p> <p>IIRC, one of Python's original remits was as a prototyping language, however Python is pretty liberal in allowing functions, functors, objects to be passed to functions and methods, whereas I suspect the same is not true of say C or Fortran.</p> <p>What should I know about designing functions/classes which I envisage will have to interface into the compiled language? And how much of these potential problems are dealt with by libraries such as cTypes, bgen, <a href="http://www.swig.org/" rel="nofollow">SWIG</a>, <a href="http://www.boost.org/doc/libs/1_35_0/libs/python/doc/index.html" rel="nofollow">Boost.Python</a>, <a href="http://cython.org/" rel="nofollow">Cython</a> or <a href="http://www.riverbankcomputing.co.uk/software/sip/intro" rel="nofollow">Python SIP</a>?</p> <p>For this particular use case, (a fitting library) I imagine allowing users to define mathematical functions (Guassian, Lorentzian etc.) as Python functions which can then to be passed an interpreted by the compiled code fitting library. Passing and returning arrays is also essential.</p> http://stackoverflow.com/questions/1622790/how-do-i-get-my-fortran-output-into-excel 0 How do I get my fortran output into excel? Steven Noble 2009-10-26T02:05:22Z 2009-10-26T02:45:02Z <p>After running a model in fortran (95) I end up with some result arrays (and one result matrix). I'd like to move these into excel for reporting purposes. What's the easiest way to do this?</p> http://stackoverflow.com/questions/1539673/compiling-a-static-binary-from-fortran-on-mac 2 Compiling a 'static' binary from fortran on mac Morgoth 2009-10-08T18:36:40Z 2009-10-23T20:52:00Z <p>Hi,</p> <p>I would like to compile fortran code on mac such that it does not depend on any shared library. Ultimately, I want to be able to send the binary to other people and for it to just work (provided the processor has the right architecture). I noticed that g95 and ifort have a -static flag, which does not work on mac.</p> <p>If I consider the following program:</p> <pre><code>program test print *,'hello world' end program test </code></pre> <p>and compile it with</p> <pre><code>ifort -static-libgcc -static-intel test.f90 </code></pre> <p>The resulting binary still depends on a few shared libraries:</p> <pre><code>valinor:tmp tom$ otool -L a.out a.out: /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 103.0.0) /usr/lib/libmx.A.dylib (compatibility version 1.0.0, current version 315.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 124.1.1) </code></pre> <p>So is there a way to properly compile fortran code such that it does not depend on any shared library on mac?</p> http://stackoverflow.com/questions/1611802/what-is-meant-by-usage-after-a-number-in-fortran 1 What is meant by . usage after a number in Fortran? cvnravi 2009-10-23T07:04:16Z 2009-10-23T07:08:29Z <p>Hi.</p> <p>What is meant by . (dot) usage after a number in Fortran code?</p> <p>For example: </p> <pre><code>x=a+b+45.-c-d </code></pre> <p>thanks in advance</p> http://stackoverflow.com/questions/1594572/porting-from-power-station4-to-intel-fortran-compiler11-2003 0 porting from power station(4) to intel fortran compiler(11/2003) cvnravi 2009-10-20T13:21:24Z 2009-10-20T15:05:19Z <p>Hi,</p> <p>What are the necessary conditions i need to takecare while porting the fortran code from power station to fortran compiler(2003)?</p> <p>What I observed is, In power station all the variables treat as global variables(even local variables also). where as in intel fortran(2003) they have separate scope for local and global. So I need to make all local variables to gloabal. Is there any option(from properties) to make all local variables to global in fortran 2003. Because there are hundered of variables in my code. Instead of assigning all local variables to global(means in COMMON block), can anybody suggest a good solution for it?</p> <p>Apart from this shall I need to takecare any other issues while porting code from powerstation to intel fortran compiler(11/2003)?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1587398/datamining-models-in-fortran-or-c-or-managed-code 1 Datamining models in FORTRAN or C (or managed code)? Rickard 2009-10-19T07:41:12Z 2009-10-20T10:30:49Z <p>We are planning to develop a datamining package for windows. The program core / calculation engine will be developed in F# with GUI stuff / DB bindings etc done in C# and F#.</p> <p>However, we have not yet decided on the model implementations. Since we need high performance, we probably can't use managed code here (any objections here?). The question is, is it reasonable to develop the models in FORTRAN or should we stick to C (or maybe C++). We are looking into using OpenCL at some point for suitable models - it feels funny having to go from managed code -> FORTRAN -> C -> OpenCL invocation for these situations.</p> <p>Any recommendations?</p> http://stackoverflow.com/questions/1582837/visual-studio-intel-visual-fortran-and-visual-c-c-mixed-language-compile 1 Visual Studio, Intel Visual Fortran, and Visual C/C++ mixed-language compile Aurelius 2009-10-17T18:11:53Z 2009-10-17T18:29:24Z <p>Working with Visual Studio 2008 Pro, with Intel Fortran compiler v11, on Windows 7 x64.</p> <p>I have an Intel Visual Fortran project set up with all the fortran source files. I wish to gradually replace all these subroutines with C/C++ (actually cuda -- bonus points). Simply right clicking on source files in the solution explorer and "add existing item" will put a .cpp or .c or cuda file in the list... but it never gets compiled. Thus any INTERFACE to C code written into the fortran code always fails on the link step.</p> <p>How does one get a mixed-language project like this? Google has failed me, and all I find are descriptions of the actual interface code, with no instructions on how to implement the visual studio build system.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1580426/fortran-pointer-functions-why-does-this-codes-behavior-depend-on-the-order-of 1 Fortran pointer functions: why does this code's behavior depend on the order of function calls? David A. Ventimiglia 2009-10-16T21:05:58Z 2009-10-17T02:26:24Z <h1>Context</h1> <p>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 is to return an integer array pointer referencing an integer array having three elements, 1, 2, and 3. The first function uses the pointer assignment operator (=>) to point the function pointer to an allocatable array that holds the data. The second function allocates a block of dynamic memory directly, via the pointer, for storing the data. The calling program just prints the elements of the returned array(s).</p> <p>Here's what I find odd.</p> <ol> <li>If I point <code>a</code> to the result of <code>function1</code>, the results are not correct. The first element of <code>a</code> appears to be "clobbered": <code>a</code> has <code>0</code>, <code>2</code>, <code>3</code>.</li> <li>If I point <code>b</code> to the result of <code>function2</code>, the results are correct. <code>b</code> gets <code>1</code>, <code>2</code>, <code>3</code>.</li> <li>Stranger still, pointing <code>b</code> to the result of <code>function2</code> <strong><em>after</em></strong> pointing <code>a</code> to <code>function1</code> <strong><em>changes</em></strong> <code>a</code> such that it becomes correct. <code>a</code> then has <code>1</code>, <code>2</code>, <code>3</code>.</li> </ol> <h1>Question</h1> <p>Why does this occur? More precisely, why does a pointer function that returns a pointer to an allocatable array clobber the first element of that array for the caller? More precisely still, why does pointing one pointer (<code>b</code>) produce a side-effect on another pointer (<code>a</code>), where the targets come from different functions that are written so as not to interact with each other at all?</p> <h1>Caveats</h1> <p>I get this behavior using the GNU Fortran compiler v.4.3.3, running an Intel laptop with Ubuntu (Jaunty). Your results may vary, which might be more interesting still. Finally, as always it could be operator error on my part, which would be interesting to me at least.</p> <h1>Code</h1> <pre><code>program main implicit none integer, dimension(:), pointer :: a, b integer :: i a =&gt; function1() b =&gt; function2() do i = 1, 3 print *, a(i) end do ! do i = 1, 3 ! print *, b(i) ! end do contains function function1 () integer, dimension(:), allocatable, target :: array integer, dimension(:), pointer :: function1 allocate(array(3)) array(1) = 1 array(2) = 2 array(3) = 3 function1 =&gt; array end function function1 function function2 () integer, dimension(:), pointer :: function2 allocate(function2(3)) function2(1) = 1 function2(2) = 2 function2(3) = 3 end function function2 end program main </code></pre> http://stackoverflow.com/questions/1572471/problem-linlking-netcdf-lib-on-windows-pgi-visual-fortran 0 Problem linlking netcdf.lib on windows PGI Visual Fortran... CEOR 2009-10-15T13:44:06Z 2009-10-16T21:51:45Z <p>I am using PGI Visual Fortran in (Windows OS) to build a project/solution consisting of a fortran (f90) library and an executable. The f90 library links to the netcdf.lib. The f90 compiles and builds OK, but when I try to link it to the executable I get the following errors: </p> <p>Compiling Project ...<br /> Linking...<br /> error LNK2019: unresolved external symbol nf_ _inq_varid_ referenced in function interpnwptools_checkcldliq_<br /> error LNK2001: unresolved external symbol nf__inq <em>varid</em><br /> error LNK2019: unresolved external symbol nf_ strerror_ referenced in function error<br /> error LNK2019: unresolved external symbol nf_ get_ att_ real_ referenced in function<br /> error LNK2001: unresolved external symbol nf_ get_ att_ real_<br /> error LNK2019: unresolved external symbol nf_ create_ referenced in function ncdf_module_openfile_<br /> error LNK2019: unresolved external symbol nf_def_dim_ referenced in function ncdf_module_openfile_<br /> .<br /> .<br /> .<br /> and a whole other bunch of nf_ unresolved symbols. I don't think that the netcdf library is getting linked properly. Can anyone help? The project that I am using requires netcdf 3.6.0-p1, which I built myself using MS VStudio 2003. I've also tried to build the project using gfortran and eclipse, but have the same linking problem. I've never used netcdf or fortran before... Any suggestions?</p> http://stackoverflow.com/questions/880636/autodocumentation-type-functionality-for-fortran 4 Autodocumentation type functionality for Fortran? JustADude 2009-05-19T01:50:11Z 2009-10-16T21:26:26Z <p>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.</p> <p>In the past I've found reverse engineering tools to be useful where no documentation of the architecture exists. </p> <p>So, is there a tool out there that will reverse engineer Fortran code? </p> <p>I tried to use Doxygen, but didn't have any luck. I will be working with two different projects - one Fortran 90 and I think is in Fortran 77. </p> <p>Thanks for any insights and feedback. </p> http://stackoverflow.com/questions/1574789/fortran-read-from-charlen15-arraydimension177-to-char-string-len15 0 Fortran read from char(len=15) array(dimension(1:77)), to char string (len=15) Kevin 2009-10-15T20:20:10Z 2009-10-15T23:34:08Z <p>how do I read from an array into a user defined variable... in Fortran?</p> http://stackoverflow.com/questions/1293265/fortran-technical-query 0 Fortran technical query ravi 2009-08-18T11:22:44Z 2009-10-11T17:38:20Z <p>I have the following function signature in Fortran. I am new to the Fortran language - what is meant by <code>0.</code> in the function below?</p> <pre><code>ANTY(IAN,NA,0.,0.) </code></pre> http://stackoverflow.com/questions/1302818/mixed-language-statically-linking-with-gfortran-and-gcc 2 Mixed language statically linking with gfortran and gcc Jose 2009-08-19T21:50:08Z 2009-10-11T16:42:54Z <p>Hi, 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 <code>-fno-underscoring</code> option for gfortran), it all works fine. However, I want to link it into a .so file, statically linking most of the needed libraries, and then link dynamically to <code>libkrb5</code>, very much like the method described in <a href="http://stupefydeveloper.blogspot.com/2008/06/gcc-statically-linked-shared-library.html" rel="nofollow">this blog post</a>.</p> <p>I followed the steps in the previous blog post, and I managed to compile the .so library without any problems. <code>nm</code> shows that it is in good shape, with my Fortran subroutines and C functions showing up:</p> <pre><code>[...]001020b9 T turnover [...]000d31ea T initio </code></pre> <p>The first function is written in Fortran, and the second in C. They don't have underscores or anything, so they should link. My main program (in Fortran) is compiled like the other Fortran source files. When I try to link, though, I get an error:</p> <pre><code>gfortran -m32 main_program.o -o program_static -L./ -llibname -lkrb5 -lgssapi_krb5 -lsasl2 -lgfortran /usr/lib/gcc/i486-linux-gnu/4.3.3/../../../../lib/crt1.o: In function `_start': /build/buildd/glibc-2.9/csu/../sysdeps/i386/elf/start.S:115: undefined reference to `main' </code></pre> <p>collect2: ld returned 1 exit status</p> <p>In <code>main_program.o</code>, I can see that there's </p> <pre><code>00000000 T MAIN__ </code></pre> <p>Everything looks in order, so why is it not linking?</p> http://stackoverflow.com/questions/1527993/intel-fortran-compiler-parallel-not-working 0 Intel Fortran Compiler "-parallel" Not Working ash 2009-10-06T20:39:24Z 2009-10-11T16:35:20Z <p>Dear Collegues;</p> <p>I have a serial Fortran code that works fine. Once I compile the same code using ifort -parallel and run it, it gives wrong results and overflow. I would expect that with "-parallel" flag, the Intel compiler is capable of selecting the loops that are safe to parallelize and I should get the exact same results as for the serial code, which did not happen. The even more strange behaviour is that I went ahead and closed all the do loops parallelization in my code using !DEC$ NOPARALLEL, compiled the code using ifort -parallel to make sure that non of the loops was parallelized and then run. Surprisingly, I got the same wrong results and overflow, although the latter action should be exactly equivalent to a serial code.</p> <p>Is there any one capable of explaining this behaviour or is it just an Intel compiler deficiency.</p> <p>Greetings. </p> http://stackoverflow.com/questions/1498973/writing-and-calling-pure-subroutines-in-fortran-90-using-gfortran 1 Writing and calling pure subroutines in Fortran 90 using gfortran David A. Ventimiglia 2009-09-30T15:45:21Z 2009-10-11T16:10:03Z <p>When writing and calling pure subroutines in Fortran 90 using gfortran, how do I find out why the compiler emits this error?</p> <pre><code>Error: Subroutine call to XXXX at (1) is not PURE </code></pre> <p>I'll try to pose my question as specifically as I can while at the same time being general enough to be useful to others, so I'll avoid pasting in my actual code and instead will sketch what happened.</p> <p>I understand there are various rules about pure procedures in Fortran 90, which I think basically boil down to not permitting side-effects in either functions or subroutines, and not permitting changes to subroutine parameters declared with <code>intent(in)</code>. I've a series of subroutines which initially were not declared to be pure, and whose parameters didn't have declared intent, but which nevertheless didn't perform side-effects. First, I changed all parameter declarations to have explicitly-declared intent, either <code>in</code>, <code>out</code>, or <code>inout</code>. Then, I declared all the subroutines to be <code>PURE</code>. Naturally, many errors occurred on the first attempt, but the compiler told me what the errors were (such-and-such parameter with <code>intent(in)</code> is being modified, for example), so one-by-one I fixed them all. </p> <p>There are calls among these procedures, however, and so now I still get many errors of the form shown above: <code>Subroutine call to XXXX at (1) is not PURE</code>. What I don't understand is <em>why</em> the call is not pure. I've done everything I can think of to make XXXX pure, but the compiler still thinks it isn't.</p> <p>So my question --rephrased-- is: how do I get gfortran to tell me WHY it thinks XXXX is not pure?</p> http://stackoverflow.com/questions/1329049/fortran-structures-and-pointers 1 Fortran structures and pointers ravi 2009-08-25T15:29:27Z 2009-10-11T16:03:36Z <p>Hi,</p> <p>I have a function in C. I want to call this function from Fortran. This function contains 2 structures passed by pointer. How do I do this in Fortran?</p> <p>Ex: </p> <pre><code>struct a { int x; float y; }; struct b { int p; float q; }; </code></pre> <p>In C:</p> <pre><code>fun(*a,*b); </code></pre> <p>How do I call this from Fortran? Here <code>a</code> is the input structure and <code>b</code> is the output structure. I am able to fill the structures in Fortran but they are unable to maintain any data after passing.</p> <p>How do I call <code>fun(*a,*b)</code> in Fortran?</p> http://stackoverflow.com/questions/1331608/fortran-runtime-error-fixed-by-writing-output 1 Fortran runtime error "fixed" by writing output Keely 2009-08-25T23:42:21Z 2009-10-11T16:00:53Z <p>Hi!</p> <p>I've having trouble with some old code used for research that I would like to compile using the Intel Fortran compiler. In a particular subroutine, I get segmentation faults unless I add in a <code>write</code> statement that just outputs the value of the loop index.</p> <pre><code>do j=1,ne SOME STUFF write(*,*) 'j=', j end </code></pre> <p>What could be causing my error such that this write statement would fix my segmentation fault? (Note: j is declared as an integer)</p> <p>thanks, keely </p>