|
Naive implementation of parallel Mersenne Twister (MT) pseudorandom number generator On 2008-04-24 11:45:55 -0300, mjm2114(a)columbia.edu said: Hi there, I have a question on a naive implementation of a parallel MT that I've done using the fortran version of MT19937ar.f posted in Prof. Matsumoto's website. (http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/ VERSIONS/FORTRAN/mt19937ar.f) ... 24 Apr 2008 19:03
Bug in gfortran when reading end of file? Hi all, I have found the following problem with gfortran. A minimal code: PROGRAM TEST IMPLICIT NONE INTEGER :: n, i, dat READ*, n DO i = 1,n READ*, dat PRINT*, dat END DO END PROGRAM TEST And an input file (note that the file does not end in a newline): [angelv(a)arce ~/temp]$... 25 Apr 2008 02:58
Naive implementation of parallel Mersenne Twister (MT) pseudorandom number generator Hi there, I have a question on a naive implementation of a parallel MT that I've done using the fortran version of MT19937ar.f posted in Prof. Matsumoto's website. (http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/ VERSIONS/FORTRAN/mt19937ar.f) First, I setup an MT in the master node and seed it with a single in... 24 Apr 2008 20:38
Can I create header file dependent by gfortran On Apr 24, 4:28 am, zhaoping...(a)gmail.com wrote: gcc -MM x.cpp can create header file dependent for CPP so I try gfortran -MM x.for ,but I got nothing even when I use gfortran -M x.for ,I got Segmentation fault Well, at some point "-M directory" was added to specify where the .mod file should be written to... 24 Apr 2008 22:13
local variable initilization Hi module A contains subroutine subA() real :: x print *,'before adding',x x=x+1 print *,'after adding',x end subroutine subA end module A program main use A x=100. call subA() print *,'first output in main:',x call subA() print *,'second output in main:',x end program main The results are (CVF6.6... 24 Apr 2008 09:26
Can I create header file dependent by gfortran gcc -MM x.cpp can create header file dependent for CPP so I try gfortran -MM x.for ,but I got nothing even when I use gfortran -M x.for ,I got Segmentation fault Is there any other method create a dependent file for fortran file? ... 24 Apr 2008 03:40
automatic creation of folders within a fortran program Hi, I am trying to organize my computation results. I get a lot of output files for many different parameter values. The specific problem does not matter. I was wondering if I could create automatically folders from fortran so each set of results is stored in a different folder or subfolder.... ie. C:\Researc... 23 Apr 2008 18:57
compiler/linker flags to abort array assignment (non-standard)use during run time Michael Metcalf wrote: "Fei Liu" <fei.liu(a)gmail.com> wrote in message news:funrc4$uv7$1(a)aioe.org... Hello Group, I am trying to come up with a list of compiler/linker options so that when the following code is run, a run time failure is generated. Or at least a compile time diagnosis is reported.... 23 Apr 2008 14:07
compiler/linker flags to abort array assignment (non-standard) use during run time "Fei Liu" <fei.liu(a)gmail.com> wrote in message news:funrc4$uv7$1(a)aioe.org... Hello Group, I am trying to come up with a list of compiler/linker options so that when the following code is run, a run time failure is generated. Or at least a compile time diagnosis is reported. The target compiler... 23 Apr 2008 15:44
compiler/linker flags to abort array assignment (non-standard) useduring run time Hello Group, I am trying to come up with a list of compiler/linker options so that when the following code is run, a run time failure is generated. Or at least a compile time diagnosis is reported. The target compiler is Intel ifort. I would like to catch as many non-standard coding practice as possible... 23 Apr 2008 13:19 |