Since 5/3/2012 1:26:01 PM, bardeau has written 4 articles and participated in 9 conversations. bardeau signature: bardeau
bardeau's articles:
Items(4) /1
gfortran optimizer on pointers?1771 (3/28/2012 1:31:47 PM) comp.lang.fortran Hi (gfortran) folks, I have a program which runs twice as fast when I set pointers to point on their targets without ambiguity at compilation time. The code is reproduced below (take care that the 2 arrays a... Sebastien
Size of binaries?260 (2/10/2012 10:49:22 AM) comp.lang.fortran Hello, we are wondering if the binary size of object files or libraries is reproducible (particularly for Fortran sources, and more generally for any compiled language). In other words: if I compile twice th... Sebastien
Detecting memory leaks with gfortran?3116 (2/7/2012 12:34:40 PM) comp.lang.fortran Hello, I am wondering if gfortran provides an option to report memory leaks at runtime, like g95 did (implicitely) in the past: program test real(kind=4), pointer :: a(:) ! allocate(a(1000)) a =>... Sebastien
Can a procedure know its own specific interface?1344 (11/29/2011 9:36:35 AM) comp.lang.fortran Dear all, please consider the following program: module myinterfaces interface subroutine mysub() end subroutine mysub end interface end module myinterfaces ! program test use myinterfaces ... Sebastien
bardeau's replies:
Items(5) /1
gfortran optimizer on pointers?1771 (3/28/2012 1:31:47 PM) comp.lang.fortran Hi (gfortran) folks, I have a program which runs twice as fast when I set pointers to point on their targets without ambiguity at compilation time. The code is reproduced below (take care that the 2 arrays a... bardeau(13)
Detecting memory leaks with gfortran?3116 (2/7/2012 12:34:40 PM) comp.lang.fortran Hello, I am wondering if gfortran provides an option to report memory leaks at runtime, like g95 did (implicitely) in the past: program test real(kind=4), pointer :: a(:) ! allocate(a(1000)) a =>... bardeau(13)
Can a procedure know its own specific interface?1344 (11/29/2011 9:36:35 AM) comp.lang.fortran Dear all, please consider the following program: module myinterfaces interface subroutine mysub() end subroutine mysub end interface end module myinterfaces ! program test use myinterfaces ... bardeau(13)