Hi.
To my knowledge you must be using gfortran 4.1 not 4.0 to get access
to large kind support like real(16)
You can verify by trying to compile the following code with gfortran.
This compiles under gfortran 4.1, but I don't
believe it will work under 4.0 since this support was added in 4.1.
program test
real(16) :: x, y
y = 4.0_16
x = sqrt(y)
print *, x
end
--Rod
------
Rod Mach
Absoft HPC Technical Director
www.absoft.com
Error: Kind -1 not supported for type REAL at (1)
In file mpi_address_f90.f90:331
make[2]: Leaving directory `/work/source/openmpi-1.0.1/ompi/mpi'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/work/source/openmpi-1.0.1/ompi'
make: *** [all-recursive] Error 1
I used the following variables:
FC=gfortran
CC=gcc
CXX=g++
F77=gfortran
Any hint on how to solve this problem? Thanks.
Jyh-Shyong Ho, Ph.D.
Research Scientist
National Center for High Performance Computing
Hsinchu, Taiwan, ROC