Fix the 'Below is the bug' bug in Phagen
This commit is contained in:
parent
13593b8870
commit
b8047274ed
|
@ -86,14 +86,15 @@ AddOption('--f2py_path',
|
||||||
|
|
||||||
# define environments
|
# define environments
|
||||||
gfortran_env = std.Clone(tools=['gfortran'])
|
gfortran_env = std.Clone(tools=['gfortran'])
|
||||||
gfortran_env.Replace(FORTRANFLAGS=['-fPIC', '-O2', '-ffast-math'])
|
#gfortran_env.Replace(FORTRANFLAGS=['-fPIC', '-O2', '-ffast-math', '-mcmodel=large', '-fdefault-real-8', '-fdefault-double-8'])
|
||||||
|
gfortran_env.Replace(FORTRANFLAGS=['-fPIC', '-mcmodel=large'])
|
||||||
|
|
||||||
ifort_env = std.Clone(tools=['ifort'])
|
ifort_env = std.Clone(tools=['ifort'])
|
||||||
|
|
||||||
# parse options
|
# parse options
|
||||||
if GetOption('compiler') == 'gfortran':
|
if GetOption('compiler') == 'gfortran':
|
||||||
env = gfortran_env
|
env = gfortran_env
|
||||||
env.Append(F2PY_OPTS='--opt=-O2')
|
#env.Append(F2PY_OPTS='--opt=-O2')
|
||||||
elif GetOption('compiler') == 'ifort':
|
elif GetOption('compiler') == 'ifort':
|
||||||
env = ifort_env
|
env = ifort_env
|
||||||
|
|
||||||
|
@ -107,9 +108,9 @@ else:
|
||||||
if GetOption('dbg'):
|
if GetOption('dbg'):
|
||||||
gfortran_env.Append(FORTRANFLAGS = ['-g', '-Wall', '-Wextra', '-Warray-temporaries',
|
gfortran_env.Append(FORTRANFLAGS = ['-g', '-Wall', '-Wextra', '-Warray-temporaries',
|
||||||
'-Wconversion', '-fbacktrace', '-ffree-line-length-0',
|
'-Wconversion', '-fbacktrace', '-ffree-line-length-0',
|
||||||
'-fcheck=all', '-ffpe-trap=zero,overflow,underflow',
|
'-fcheck=all', '-ffpe-trap=zero,overflow,underflow,invalid,denormal',
|
||||||
'-finit-real=nan'],
|
'-finit-real=nan'],
|
||||||
F2PY_OPTS = ['--debug-capi', '--debug'])
|
F2PY_OPTS = ['--noopt', '--debug-capi', '--debug'])
|
||||||
|
|
||||||
if GetOption('verbose'):
|
if GetOption('verbose'):
|
||||||
env.Replace(FORTRANCOMSTR = "")
|
env.Replace(FORTRANCOMSTR = "")
|
||||||
|
|
|
@ -14802,13 +14802,16 @@ c check = .true.
|
||||||
!
|
!
|
||||||
! MPI
|
! MPI
|
||||||
!
|
!
|
||||||
if ( .not. do_r_in ) then
|
CST if ( .not. do_r_in ) then
|
||||||
! if ( do_r_in ) then
|
CST! if ( do_r_in ) then
|
||||||
|
if ( do_r_in ) then
|
||||||
|
|
||||||
i = 1
|
i = 1
|
||||||
!
|
!
|
||||||
write(6,*) 'Below is the bug!'
|
CST write(6,*) 'Below is the bug!'
|
||||||
|
CST write(6,*) 'r_in=', r_in
|
||||||
do
|
do
|
||||||
|
CST write(6,*) 'r_real(',i,')=', r_real(i)
|
||||||
!
|
!
|
||||||
if ( r_real ( i ) > r_in ) then
|
if ( r_real ( i ) > r_in ) then
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue