Since 4/2/2012 5:37:58 AM, fernand31 has written 8 articles and participated in 10 conversations. fernand31 signature: fernand31
fernand31's articles:
Items(8) /1
Value of C_LONG_DOUBLE1298 (11/22/2011 11:08:57 PM) comp.lang.fortran gfortran and ifort give different values for C_LONG_DOUBLE for the ISO_C_BINDING on the same machine: $ cat test.f90 PROGRAM MAIN USE ISO_C_BINDING PRINT *,C_LONG_DOUBLE END $ /opt/intel/bin/ifort test... Rick
g95 and FFTW18166 (4/22/2010 8:33:59 PM) comp.lang.fortran I'm using both in-place and out-of-place real-data FFT in the same
program, with FFTW3.
Something along those lines:
DOUBLE PRECISION :: bR(2*(L/2+1),L)
DOUBLE PRECISION :: aR(2*(L/2+1),L)
DOUBLE COMPL... Rick
Fortran preprocessor on free-form source code3134 (7/31/2009 12:18:42 PM) comp.lang.fortran Is there any way to let the Fortran pre-compiler (at least ifort) accept spaces before #IFDEF? Example: PROGRAM MAIN IMPLICIT NONE #IFDEF MULTI PRINT *,'Multi' #ELSE PRINT *,'NOT MULTI' ... Rick
Template metaprogramming273 (3/10/2009 10:55:17 AM) comp.lang.fortran Are templates for metaprogramming available with Fortran ? http://en.wikipedia.org/wiki/Template_metaprogramming ... Rick
FFTW3 with Fortran?139 (10/1/2008 1:54:55 PM) comp.lang.fortran What would be the best (easiest) way to use FFTW3.2alpha3 (or FFTW 3.1) with Fortran and MPI? The Fortran wrappers for FFTW-MPI are not available since FFTW 2.1. According to benchmarks, FFTW #3 is roughly two ... Rick
MPI beginner11119 (9/29/2008 8:57:45 AM) comp.lang.fortran This is probably a silly question, but: is there a standard way to compile the same code with ifort using MPI or not using it? For instance, I could provide line of codes that would apply in each of the two cas... Rick
ALLOCATABLE arrays in TYPES with gfortran1134 (2/18/2008 8:32:53 PM) comp.lang.fortran Is it possible to use allocatable arrays in types with gfortran, like: PROGRAM MAIN IMPLICIT NONE TYPE myType DOUBLE PRECISION, ALLOCATABLE, DIMENSION(:) :: E END TYPE TYPE(myType) :: a ! ALLOCATE... Rick
fernand31's replies:
Items(5) /1
ALLOCATABLE arrays in TYPES with gfortran1134 (2/18/2008 8:32:53 PM) comp.lang.fortran Is it possible to use allocatable arrays in types with gfortran, like: PROGRAM MAIN IMPLICIT NONE TYPE myType DOUBLE PRECISION, ALLOCATABLE, DIMENSION(:) :: E END TYPE TYPE(myType) :: a ! ALLOCATE... fernand31(18)
MPI beginner11119 (9/29/2008 8:57:45 AM) comp.lang.fortran This is probably a silly question, but: is there a standard way to compile the same code with ifort using MPI or not using it? For instance, I could provide line of codes that would apply in each of the two cas... fernand31(18)
Fortran preprocessor on free-form source code3134 (7/31/2009 12:18:42 PM) comp.lang.fortran Is there any way to let the Fortran pre-compiler (at least ifort) accept spaces before #IFDEF? Example: PROGRAM MAIN IMPLICIT NONE #IFDEF MULTI PRINT *,'Multi' #ELSE PRINT *,'NOT MULTI' ... fernand31(18)
Value of C_LONG_DOUBLE1298 (11/22/2011 11:08:57 PM) comp.lang.fortran gfortran and ifort give different values for C_LONG_DOUBLE for the ISO_C_BINDING on the same machine: $ cat test.f90 PROGRAM MAIN USE ISO_C_BINDING PRINT *,C_LONG_DOUBLE END $ /opt/intel/bin/ifort test... fernand31(18)