Skip to content

Commit

Permalink
Merge remote-tracking branch 'noaa/main' into AddCI
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenchilutti committed Dec 18, 2024
2 parents ed636a0 + 5050def commit f043398
Show file tree
Hide file tree
Showing 29 changed files with 1,410 additions and 47 deletions.
8 changes: 7 additions & 1 deletion Build/BUILDlibfms
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
# configure your build parameters
compiler="intel"
yaml="noyaml"
pic="nopic"
#
# parse arguments
for arg in "$@"
Expand All @@ -41,6 +42,10 @@
yaml="${arg#*=}"
shift # Remove "yaml" from processing
;;
nopic|pic)
pic="${arg#*=}"
shift # Remove "PIC" from processing
;;
*)
if [ ${arg#} != '--help' ] && [ ${arg#} != '-h' ] ; then
echo "option "${arg#}" not found"
Expand All @@ -49,6 +54,7 @@
echo -e "valid options are:"
echo -e "\t[intel(D) | gnu | nvhpc] \t\t\t compiler"
echo -e "\t[noyaml(D) | yaml] \t\t\t whether to build with -Duse_yaml"
echo -e "\t[nopic(D) | pic] \t\t\t whether to build all components with the -fPIC flag (position independent code)"
echo -e "\n"
exit
;;
Expand All @@ -74,7 +80,7 @@ fi
#
# build FMS library
echo " building ${NCEP_DIR}/libFMS/${compiler}"
MAKE_libFMS ${compiler} ${yaml} >> build_libFMS_${compiler}.out 2>&1 # build 32bit and 64bit versions of libFMS
MAKE_libFMS ${compiler} ${yaml} ${pic} >> build_libFMS_${compiler}.out 2>&1 # build 32bit and 64bit versions of libFMS
#
# test and report on libFMS build success
if [ $? -ne 0 ] ; then
Expand Down
117 changes: 117 additions & 0 deletions Build/BUILDmom6
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
#!/bin/bash
#***********************************************************************
#* GNU Lesser General Public License
#*
#* This file is part of the SHiELD Build System.
#*
#* The SHiELD Build System free software: you can redistribute it
#* and/or modify it under the terms of the
#* GNU Lesser General Public License as published by the
#* Free Software Foundation, either version 3 of the License, or
#* (at your option) any later version.
#*
#* The SHiELD Build System distributed in the hope that it will be
#* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
#* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#* See the GNU General Public License for more details.
#*
#* You should have received a copy of the GNU Lesser General Public
#* License along with theSHiELD Build System
#* If not, see <http://www.gnu.org/licenses/>.
#***********************************************************************
#
# DISCLAIMER: This script is provided as-is and as such is unsupported.
#
set -x
#
# set default values
# configure your build parameters
COMPILER="intel"
BIT="64bit"
COMP="" # implies PROD=Y
#
# parse arguments
for arg in "$@"
do
case $arg in
prod|repro|debug)
if [ ${arg#} = 'repro' ] ; then
COMP="REPRO=Y"
elif [ ${arg#} = 'debug' ] ; then
COMP="DEBUG=Y"
fi
shift # Remove COMP from processing
;;
intel|gnu)
COMPILER="${arg#*=}"
shift # Remove "compiler" from processing
;;
*)
if [ ${arg#} != '--help' ] && [ ${arg#} != '-h' ] ; then
echo "option "${arg#}" not found"
fi
echo -e ' '
echo -e "valid options are:"
echo -e "\t[intel(D) | gnu] \t\t\t compiler"
echo -e "\t[prod(D) | repro | debug] \t\t compiler option settings"
echo -e "\n"
exit
;;
esac
done

#
# set up some default variables if not called from COMPILE
# BUILD_ROOT is set if this script is called from the COMPILE script
if [ -z ${BUILD_ROOT} ] ; then
export BUILD_ROOT=${PWD%/*}
export SHiELD_SRC=${PWD%/*/*}/SHiELD_SRC/
export PATH="${BUILD_ROOT}/mkmf/bin:${BUILD_ROOT}/Build/mk_scripts:${PATH}"
export NCEP_DIR=${BUILD_ROOT}/Build
if [ ! -z ${EXTERNAL_LIBS} ] ; then
export NCEP_DIR=${EXTERNAL_LIBS}
fi
# load the proper environment for your machine
. ${BUILD_ROOT}/site/environment.${COMPILER}.sh
fi



mkdir -p ${BUILD_ROOT}/Build/mom6
list_paths -l -o ${BUILD_ROOT}/Build/mom6/pathnames_mom6 \
${SHiELD_SRC}/MOM6/config_src/memory/dynamic_nonsymmetric \
${SHiELD_SRC}/MOM6/config_src/drivers/FMS_cap \
${SHiELD_SRC}/MOM6/src/*/ \
${SHiELD_SRC}/MOM6/src/*/*/ \
${SHiELD_SRC}/MOM6/config_src/external/ODA_hooks \
${SHiELD_SRC}/MOM6/config_src/external/database_comms \
${SHiELD_SRC}/MOM6/config_src/external/drifters \
${SHiELD_SRC}/MOM6/config_src/external/stochastic_physics \
${SHiELD_SRC}/MOM6/config_src/external/GFDL_ocean_BGC \
${SHiELD_SRC}/MOM6/pkg/GSW-Fortran/*/ \
${SHiELD_SRC}/MOM6/config_src/infra/FMS2
cd ${BUILD_ROOT}/Build

pushd mom6

mkmf -m Makefile -a ${SHiELD_SRC} -p libmom6.a -t "${BUILD_ROOT}/${TEMPLATE}" \
-c "-DINTERNAL_FILE_NML -g -DMAX_FIELDS_=100 -DNOT_SET_AFFINITY -D_USE_MOM6_DIAG -D_USE_GENERIC_TRACER -DUSE_PRECISION=2 -I${NCEP_DIR}/libFMS/${COMPILER}/${BIT}" \
-I${SHiELD_SRC}/FMS/axis_utils/include -I${SHiELD_SRC}/FMS/diag_manager/include -I${SHiELD_SRC}/FMS/fms/include -I${SHiELD_SRC}/FMS/fms2_io/include \
-I${SHiELD_SRC}/FMS/horiz_interp/include -I${SHiELD_SRC}/FMS/include -I${SHiELD_SRC}/FMS/mpp/include -I${SHiELD_SRC}/FMS/sat_vapor_pres/include \
-I${SHiELD_SRC}/FMS/string_utils/include -I${SHiELD_SRC}/FMS/test_fms/fms/include \
-I${SHiELD_SRC}/MOM6/src/framework ${BUILD_ROOT}/Build/mom6/pathnames_mom6

make -j8 ${COMP} AVX=Y NETCDF=3 Makefile libmom6.a >& Build_mom6.out

################
#will get noise with openmp in debugmode
################

# test and report on libFMS build success
if [ $? -ne 0 ] ; then
echo ">>> ${BUILD_ROOT}/Build/mom6 build failed"
exit 1
fi
echo " libmom6 build successful"

popd
14 changes: 12 additions & 2 deletions Build/BUILDnceplibs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
# DISCLAIMER: This script is provided as-is and as such is unsupported.
#

#set default compiler
# set default values
compiler="intel"
pic="nopic"

#define versions to checkout
version_bacio="v2.6.0"
Expand All @@ -40,13 +41,18 @@ version_w3nco="v2.4.1"
compiler="${arg#*=}"
shift # Remove "compiler" from processing
;;
nopic|pic)
pic="${arg#*=}"
shift # Remove "pic" from processing
;;
*)
if [ ${arg#} != '--help' ] && [ ${arg#} != '-h' ] ; then
echo "option "${arg#}" not found"
fi
echo -e ' '
echo -e "valid options are:"
echo -e "\t[intel(D) | gnu | nvhpc] \t\t\t compiler"
echo -e "\t[nopic(D) | pic] \t\t\t whether to build all components with the -fPIC flag (position independent code)"
echo -e "\n"
exit
;;
Expand All @@ -72,7 +78,11 @@ mkdir -p $nceplibs_dir
cd $nceplibs_dir

#Define common cmake flags
cmake_flags="-DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_C_STANDARD=99"
if [ ${pic} = 'pic' ] ; then
cmake_flags="-DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_C_STANDARD=99 -DCMAKE_POSITION_INDEPENDENT_CODE=ON"
else
cmake_flags="-DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_C_STANDARD=99"
fi

git clone -b $version_bacio https://github.com/NOAA-EMC/NCEPLIBS-bacio
pushd NCEPLIBS-bacio
Expand Down
108 changes: 108 additions & 0 deletions Build/BUILDsis2
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
#!/bin/bash
#***********************************************************************
#* GNU Lesser General Public License
#*
#* This file is part of the SHiELD Build System.
#*
#* The SHiELD Build System free software: you can redistribute it
#* and/or modify it under the terms of the
#* GNU Lesser General Public License as published by the
#* Free Software Foundation, either version 3 of the License, or
#* (at your option) any later version.
#*
#* The SHiELD Build System distributed in the hope that it will be
#* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
#* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#* See the GNU General Public License for more details.
#*
#* You should have received a copy of the GNU Lesser General Public
#* License along with theSHiELD Build System
#* If not, see <http://www.gnu.org/licenses/>.
#***********************************************************************
#
# DISCLAIMER: This script is provided as-is and as such is unsupported.
#
set -x
#
# set default values
# configure your build parameters
COMPILER="intel"
BIT="64bit"
COMP="" # implies PROD=Y
#
# parse arguments
for arg in "$@"
do
case $arg in
prod|repro|debug)
if [ ${arg#} = 'repro' ] ; then
COMP="REPRO=Y"
elif [ ${arg#} = 'debug' ] ; then
COMP="DEBUG=Y"
fi
shift # Remove COMP from processing
;;
intel|gnu)
COMPILER="${arg#*=}"
shift # Remove "compiler" from processing
;;
*)
if [ ${arg#} != '--help' ] && [ ${arg#} != '-h' ] ; then
echo "option "${arg#}" not found"
fi
echo -e ' '
echo -e "valid options are:"
echo -e "\t[intel(D) | gnu] \t\t\t compiler"
echo -e "\t[prod(D) | repro | debug] \t\t compiler option settings"
echo -e "\n"
exit
;;
esac
done

# set up some default variables if not called from COMPILE
# BUILD_ROOT is set if this script is called from the COMPILE script
if [ -z ${BUILD_ROOT} ] ; then
export BUILD_ROOT=${PWD%/*}
export SHiELD_SRC=${PWD%/*/*}/SHiELD_SRC/
export PATH="${BUILD_ROOT}/mkmf/bin:${BUILD_ROOT}/Build/mk_scripts:${PATH}"
export NCEP_DIR=${BUILD_ROOT}/Build
if [ ! -z ${EXTERNAL_LIBS} ] ; then
export NCEP_DIR=${EXTERNAL_LIBS}
fi
# load the proper environment for your machine
. ${BUILD_ROOT}/site/environment.${COMPILER}.sh
fi


mkdir -p ${BUILD_ROOT}/Build/sis2
list_paths -l -o ${BUILD_ROOT}/Build/sis2/pathnames_sis2 \
${SHiELD_SRC}/SIS2/config_src/dynamic_symmetric \
${SHiELD_SRC}/SIS2/config_src/external/Icepack_interfaces \
${SHiELD_SRC}/SIS2/src \
${SHiELD_SRC}/icebergs/src \
${SHiELD_SRC}/ice_param

cd ${BUILD_ROOT}/Build

pushd sis2

mkmf -m Makefile -a ${SHiELD_SRC} -p libsis2.a -t "${BUILD_ROOT}/${TEMPLATE}" \
-c "-DINTERNAL_FILE_NML -g -DUSE_FMS2_IO -I${NCEP_DIR}/mom6 -I${NCEP_DIR}/libFMS/${COMPILER}/${BIT}" -I${SHiELD_SRC}/FMS/axis_utils/include \
-I${SHiELD_SRC}/FMS/diag_manager/include -I${SHiELD_SRC}/FMS/fms/include -I${SHiELD_SRC}/FMS/fms2_io/include -I${SHiELD_SRC}/FMS/horiz_interp/include \
-I${SHiELD_SRC}/FMS/include -I${SHiELD_SRC}/FMS/mpp/include -I${SHiELD_SRC}/FMS/sat_vapor_pres/include -I${SHiELD_SRC}/FMS/string_utils/include \
-I${SHiELD_SRC}/FMS/test_fms/fms/include -I${SHiELD_SRC}/MOM6/pkg/CVMix-src/include \
-I${SHiELD_SRC}/MOM6/src/framework ${BUILD_ROOT}/Build/sis2/pathnames_sis2


make -j8 ${COMP} AVX=Y NETCDF=3 Makefile libsis2.a >& Build_sis2.out

#
# test and report on libsis2 build success
if [ $? -ne 0 ] ; then
echo ">>> ${BUILD_ROOT}/Build/sis2 build failed"
exit 1
fi
echo " libsis2 build successful"

popd
Loading

0 comments on commit f043398

Please # to comment.