-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update machine files for wolf and conejo
Adds the machine environment files for the wolf and conejo machines at LANL. Fixes: none, feature addition only User interface changes?: yes, "wolf" and "conejo" machines are now available. Changes were designed with minimal to no impact on other machine setups. Code review: Chonggang Xu, Ryan Knox, bandre Test suite: ed : lawrencium_intel, conejo_intel, yellowstone_{intel,pgi,gnu} Test baseline: lrc: a066165; conejo: none; yellowstone: 8740a1a Test namelist changes: None Test answer changes: None Test summary: All test functionality and restarts pass except f09 and f19 restarts (github issue #14)
- Loading branch information
Showing
9 changed files
with
322 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#! /bin/csh -f | ||
|
||
#------------------------------------------------------------------------------- | ||
# Modules and library paths | ||
#------------------------------------------------------------------------------- | ||
source /usr/share/Modules/init/csh | ||
module purge | ||
module use /usr/projects/cesm/software/local/modulefiles/all | ||
|
||
if ( $COMPILER == "intel" ) then | ||
# module load intel/13.1.3 | ||
module load intel/15.0.5 | ||
endif | ||
|
||
if ( $COMPILER == "pgi" ) then | ||
# 13.10 is too old to support | ||
# PGI support is currently disabled until we have access to a newer version | ||
# (i.e. 14.10) | ||
module load pgi/13.10 | ||
endif | ||
|
||
if ( $COMPILER == "gnu" ) then | ||
module load gcc/4.8.2 | ||
endif | ||
|
||
if ( $MPILIB == "openmpi" ) then | ||
module load openmpi/1.6.5 | ||
endif | ||
|
||
if ( $MPILIB == "mvapich" ) then | ||
module load mvapich2/1.8 | ||
endif | ||
|
||
module load netcdf/4.4.0 | ||
module load parallel-netcdf/1.5.0 | ||
module load cmake/3.0.0 | ||
module load mkl/11.2.4 | ||
module load totalview | ||
|
||
if ( $COMPILER == "gnu" && $MPILIB == "openmpi" ) then | ||
module load trilinos | ||
module load albany | ||
endif | ||
|
||
if ( $?PERL ) then | ||
printenv | ||
endif | ||
|
||
module list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#! /bin/csh -f | ||
|
||
#------------------------------------------------------------------------------- | ||
# Modules and library paths | ||
#------------------------------------------------------------------------------- | ||
source /usr/share/Modules/init/csh | ||
module purge | ||
module use /usr/projects/climate/SHARED_CLIMATE/modulefiles/all | ||
|
||
if ( $COMPILER == "intel" ) then | ||
module load intel/13.1.3 | ||
endif | ||
|
||
if ( $COMPILER == "pgi" ) then | ||
# 13.10 is too old to support | ||
# PGI support is currently disabled until we have access to a newer version | ||
# (i.e. 14.10) | ||
module load pgi/13.10 | ||
endif | ||
|
||
if ( $COMPILER == "gnu" ) then | ||
module load gcc/4.8.2 | ||
endif | ||
|
||
if ( $MPILIB == "openmpi" ) then | ||
module load openmpi/1.6.5 | ||
endif | ||
|
||
if ( $MPILIB == "mvapich" ) then | ||
module load mvapich2/1.8 | ||
endif | ||
|
||
module load netcdf/4.4.0 | ||
module load parallel-netcdf/1.5.0 | ||
module load cmake/3.0.0 | ||
|
||
if ( $COMPILER == "gnu" && $MPILIB == "openmpi" ) then | ||
module load trilinos | ||
module load albany | ||
endif | ||
|
||
if ( $?PERL ) then | ||
printenv | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.