|
reading more data than the record size (RECL) "ssheriff" <ssheriff3(a)gmail.com> wrote in message news:10ce0b89-bfea-4147-b9bf-41bc37eb685c(a)c19g2000prf.googlegroups.com... I am trying to recompile some old .for code with g95. The binary runs fine, but I need to make the arrays larger. When I compile (g95 -o a.exe b.for) the program runs until it ... 16 Apr 2008 17:14
g95: reading more data than the record size (RECL) I am trying to recompile some old .for code with g95. The binary runs fine, but I need to make the arrays larger. When I compile (g95 -o a.exe b.for) the program runs until it gags on reading an 'unformatted' file: here's the code: open(unit=12, file=zbot_file, form='unformatted', status='old') c... 11 Apr 2008 17:29
I have a question about Lapack lleshuang(a)gmail.com wrote: I have a qustion about Lapack. I don't known which subroutines suitable for my problem. My problem is solving a linear equation system which has the following feature: real, symmetric, Sparse, sometimes positive and sometimes inpositive, and band storage. Wh... 11 Apr 2008 15:54
Passing Array-valued functions TO procedures So, I have an array valued function declared in a module. I'd like to pass this function to a subroutine in a different module. MODULE fun CONTAINS FUNCTION func(t) REAL :: t REAL, DIMENSION(2,2)::func func(1,1)=1*t func(1,2)=2*t func(2,1)=3*t func(2,2)=4*t END FUNCTION func END MODULE fun MO... 11 Apr 2008 17:29
static and dynamic linking hi group, I am a PhD student, and in my project I have to modify some subroutines of codes that were written in fortran. I have a basic knowledge of fortran as I do not have a background of compouter science. I have two different codes written in fortran. Both have scripts for compiling and linking provided b... 17 Apr 2008 04:23
Reopening standard input/output (Was: RECL) On 9 apr, 21:43, nos...(a)see.signature (Richard Maine) .... What you want is a reopen on the same unit, changing the recl value. Go ahead and try it. It might work. But, as I said above, it has portability issues, particularly prior to f2003. It may well be that some f95 compilers just don't support re... 11 Apr 2008 02:55
I have a qustion about Lapack I have a qustion about Lapack. I don't known which subroutines suitable for my problem. My problem is solving a linear equation system which has the following feature: real, symmetric, Sparse, sometimes positive and sometimes inpositive, and band storage. Which subroutines is suitable for my problem? I'm ... 13 Apr 2008 01:24
idmax, idmin in blas extension I want to use idmax and idmin which should be in blas library. But according to the mannual of blas, they belong to the extension of blas. When can I get this? Thanks! ... 13 Apr 2008 04:34
branch prediction? I was looking at some of the assembly output generated by Intel Fortran "ifort -S file.f" and some annotations caught my eye: js ..B1.6 # Prob 2% #35.10 jg ..B1.4 # Prob 18% #35.10 jmp ..B1.3 # Prob 100% ... 10 Apr 2008 19:20
please try this program (generic resolution) According to my understanding of Section 14.1.2.4.1 of the Fortran 95 standard and Section 12.4.4.1 of the Fortran 2003 standard, the program PROGRAM MAIN INTERFACE COS REAL FUNCTION MYCOS(X) END FUNCTION END INTERFACE CALL SUBR CONTAINS SUBROU... 12 Apr 2008 15:05 |