Skip to content

Commit 774cd54

Browse files
author
Bill Ladwig
committed
Merge branch 'feature/clean_build' into develop
2 parents fbc0af3 + 99ff586 commit 774cd54

File tree

9 files changed

+8
-804
lines changed

9 files changed

+8
-804
lines changed

build_scripts/chey_intel_mkl_omp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ python sub_sizes.py
77
cd ..
88
ifort ompgen.F90 -qopenmp -fpp -save-temps > /dev/null 2>&1
99
mv ompgen.i90 omp.f90
10-
f2py *.f90 -m _wrffortran -h wrffortran.pyf --overwrite-signature
10+
#f2py *.f90 -m _wrffortran -h wrffortran.pyf --overwrite-signature
1111
cd ..
1212

1313
python setup.py clean --all

build_scripts/gnu_no_omp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd ../fortran
44
gfortran -E ompgen.F90 -cpp -o omp.f90
5-
f2py *.f90 -m _wrffortran -h wrffortran.pyf --overwrite-signature
5+
#f2py *.f90 -m _wrffortran -h wrffortran.pyf --overwrite-signature
66
cd ..
77

88
python setup.py clean --all

build_scripts/gnu_omp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python sub_sizes.py
66

77
cd ..
88
gfortran -E ompgen.F90 -fopenmp -cpp -o omp.f90
9-
f2py *.f90 -m _wrffortran -h wrffortran.pyf --overwrite-signature
9+
#f2py *.f90 -m _wrffortran -h wrffortran.pyf --overwrite-signature
1010
cd ..
1111

1212
python setup.py clean --all

build_scripts/win_mingw_no_omp.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cd ../fortran
22
CALL gfortran -E ompgen.F90 -cpp -o omp.f90
33
REM Wildcards not working on Windows for some reason
4-
CALL f2py -m _wrffortran -h wrffortran.pyf --overwrite-signature wrf_constants.f90 wrf_testfunc.f90 wrf_user.f90 rip_cape.f90 wrf_cloud_fracf.f90 wrf_fctt.f90 wrf_user_dbz.f90 wrf_relhl.f90 calc_uh.f90 wrf_user_latlon_routines.f90 wrf_pvo.f90 eqthecalc.f90 wrf_rip_phys_routines.f90 wrf_pw.f90 wrf_vinterp.f90 wrf_wind.f90 omp.f90
4+
REM CALL f2py -m _wrffortran -h wrffortran.pyf --overwrite-signature wrf_constants.f90 wrf_testfunc.f90 wrf_user.f90 rip_cape.f90 wrf_cloud_fracf.f90 wrf_fctt.f90 wrf_user_dbz.f90 wrf_relhl.f90 calc_uh.f90 wrf_user_latlon_routines.f90 wrf_pvo.f90 eqthecalc.f90 wrf_rip_phys_routines.f90 wrf_pw.f90 wrf_vinterp.f90 wrf_wind.f90 omp.f90
55
cd ..
66

77
CALL python setup.py clean --all

build_scripts/win_mingw_omp.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CALL python sub_sizes.py
55
cd ..
66
CALL gfortran -E ompgen.F90 -cpp -fopenmp -o omp.f90
77
REM Wildcards not working on Windows for some reason
8-
CALLf2py -m _wrffortran -h wrffortran.pyf --overwrite-signature wrf_constants.f90 wrf_testfunc.f90 wrf_user.f90 rip_cape.f90 wrf_cloud_fracf.f90 wrf_fctt.f90 wrf_user_dbz.f90 wrf_relhl.f90 calc_uh.f90 wrf_user_latlon_routines.f90 wrf_pvo.f90 eqthecalc.f90 wrf_rip_phys_routines.f90 wrf_pw.f90 wrf_vinterp.f90 wrf_wind.f90 omp.f90
8+
REM CALL f2py -m _wrffortran -h wrffortran.pyf --overwrite-signature wrf_constants.f90 wrf_testfunc.f90 wrf_user.f90 rip_cape.f90 wrf_cloud_fracf.f90 wrf_fctt.f90 wrf_user_dbz.f90 wrf_relhl.f90 calc_uh.f90 wrf_user_latlon_routines.f90 wrf_pvo.f90 eqthecalc.f90 wrf_rip_phys_routines.f90 wrf_pw.f90 wrf_vinterp.f90 wrf_wind.f90 omp.f90
99
cd ..
1010

1111
CALL python setup.py clean --all

build_scripts/win_msvc_mingw_no_omp.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cd ../fortran
22
CALL gfortran -E ompgen.F90 -cpp -o omp.f90
33
REM Wildcards not working on Windows for some reason
4-
CALL f2py -m _wrffortran -h wrffortran.pyf --overwrite-signature wrf_constants.f90 wrf_testfunc.f90 wrf_user.f90 rip_cape.f90 wrf_cloud_fracf.f90 wrf_fctt.f90 wrf_user_dbz.f90 wrf_relhl.f90 calc_uh.f90 wrf_user_latlon_routines.f90 wrf_pvo.f90 eqthecalc.f90 wrf_rip_phys_routines.f90 wrf_pw.f90 wrf_vinterp.f90 wrf_wind.f90 omp.f90
4+
REM CALL f2py -m _wrffortran -h wrffortran.pyf --overwrite-signature wrf_constants.f90 wrf_testfunc.f90 wrf_user.f90 rip_cape.f90 wrf_cloud_fracf.f90 wrf_fctt.f90 wrf_user_dbz.f90 wrf_relhl.f90 calc_uh.f90 wrf_user_latlon_routines.f90 wrf_pvo.f90 eqthecalc.f90 wrf_rip_phys_routines.f90 wrf_pw.f90 wrf_vinterp.f90 wrf_wind.f90 omp.f90
55
cd ..
66

77
CALL python setup.py clean --all

build_scripts/win_msvc_mingw_omp.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CALL python sub_sizes.py
55
cd ..
66
CALL gfortran -E ompgen.F90 -cpp -fopenmp -o omp.f90
77
REM Wildcards not working on Windows for some reason
8-
CALL f2py -m _wrffortran -h wrffortran.pyf --overwrite-signature wrf_constants.f90 wrf_testfunc.f90 wrf_user.f90 rip_cape.f90 wrf_cloud_fracf.f90 wrf_fctt.f90 wrf_user_dbz.f90 wrf_relhl.f90 calc_uh.f90 wrf_user_latlon_routines.f90 wrf_pvo.f90 eqthecalc.f90 wrf_rip_phys_routines.f90 wrf_pw.f90 wrf_vinterp.f90 wrf_wind.f90 omp.f90
8+
REM CALL f2py -m _wrffortran -h wrffortran.pyf --overwrite-signature wrf_constants.f90 wrf_testfunc.f90 wrf_user.f90 rip_cape.f90 wrf_cloud_fracf.f90 wrf_fctt.f90 wrf_user_dbz.f90 wrf_relhl.f90 calc_uh.f90 wrf_user_latlon_routines.f90 wrf_pvo.f90 eqthecalc.f90 wrf_rip_phys_routines.f90 wrf_pw.f90 wrf_vinterp.f90 wrf_wind.f90 omp.f90
99
cd ..
1010

1111
CALL python setup.py clean --all

fortran/wrffortran.pyf

Lines changed: 0 additions & 795 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@
4040
"fortran/wrf_pw.f90",
4141
"fortran/wrf_vinterp.f90",
4242
"fortran/wrf_wind.f90",
43-
"fortran/omp.f90",
44-
"fortran/wrffortran.pyf"]
43+
"fortran/omp.f90"]
4544
)
4645

4746
with open("src/wrf/version.py") as f:

0 commit comments

Comments
 (0)