Skip to content

Commit 84b758c

Browse files
authored
add nceplibs-ncio to hpc-stack (#157)
1 parent d2a28ee commit 84b758c

File tree

8 files changed

+37
-0
lines changed

8 files changed

+37
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ script.
161161
- [NCEPLIBS-wgrib2](https://github.com/noaa-emc/nceplibs-wgrib2.git)
162162
- [NCEPLIBS-prod_util](https://github.com/noaa-emc/nceplibs-prod_util.git)
163163
- [NCEPLIBS-grib_util](https://github.com/noaa-emc/nceplibs-grib_util.git)
164+
- [NCEPLIBS-ncio](https://github.com/noaa-emc/nceplibs-ncio.git)
164165
- [EMC_crtm](https://github.com/noaa-emc/EMC_crtm.git)
165166
- [EMC_post](https://github.com/noaa-emc/EMC_post.git)
166167

config/stack_custom.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,11 @@ grib_util:
211211
install_as: 1.2.2
212212
openmp: ON
213213

214+
ncio:
215+
build: YES
216+
version: develop
217+
install_as: 1.0.0
218+
214219
boost:
215220
build: YES
216221
version: 1.68.0

config/stack_gaea.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,11 @@ grib_util:
208208
install_as: 1.2.2
209209
openmp: ON
210210

211+
ncio:
212+
build: YES
213+
version: develop
214+
install_as: 1.0.0
215+
211216
boost:
212217
build: NO
213218
version: 1.68.0

config/stack_mac.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,11 @@ grib_util:
212212
install_as: 1.2.2
213213
openmp: ON
214214

215+
ncio:
216+
build: YES
217+
version: develop
218+
install_as: 1.0.0
219+
215220
boost:
216221
build: YES
217222
version: 1.68.0

config/stack_ncar.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,11 @@ grib_util:
208208
install_as: 1.2.2
209209
openmp: ON
210210

211+
ncio:
212+
build: YES
213+
version: develop
214+
install_as: 1.0.0
215+
211216
boost:
212217
build: YES
213218
version: 1.68.0

config/stack_noaa.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,11 @@ grib_util:
208208
install_as: 1.2.2
209209
openmp: ON
210210

211+
ncio:
212+
build: YES
213+
version: develop
214+
install_as: 1.0.0
215+
211216
boost:
212217
build: YES
213218
version: 1.68.0

config/stack_ufs_weather_ci.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,3 +210,8 @@ grib_util:
210210
version: v1.2.2
211211
install_as: 1.2.2
212212
openmp: ON
213+
214+
ncio:
215+
build: YES
216+
version: develop
217+
install_as: 1.0.0

libs/build_nceplibs.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,12 @@ if $MODULES; then
116116
prod_util)
117117
module load w3nco
118118
;;
119+
ncio)
120+
mpi=$mpi_check
121+
[[ -z $mpi ]] && ( echo "$name requires MPI, ABORT!"; exit 1 )
122+
module load hpc-$HPC_MPI
123+
module load netcdf
124+
;;
119125
esac
120126
module list
121127
set -x

0 commit comments

Comments
 (0)