-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'singhbalwinder/scripts/mach-files-for-constance' (PR #398)
This commit adds machine files for a new PNNL cluster, Constance [BFB]
- Loading branch information
Showing
4 changed files
with
129 additions
and
0 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 | ||
#--- set modules | ||
source /etc/profile.d/modules.csh | ||
|
||
#--- unload all modules | ||
module purge | ||
unsetenv LD_LIBRARY_PATH | ||
module load perl/5.20.0 | ||
module load cmake/3.3.0 | ||
|
||
|
||
if ( $COMPILER == "intel") then | ||
module load intel/15.0.1 | ||
module load mvapich2/2.1 | ||
module load netcdf/4.3.2 | ||
|
||
setenv MPI_LIB $MPI_ROOT/lib | ||
|
||
module load pnetcdf/1.6.1 | ||
setenv PNETCDFROOT $PNETCDF_LIB/../ | ||
|
||
module load mkl/15.0.1 | ||
setenv MKL_PATH $MLIB_LIB | ||
setenv NETCDF_HOME $NETCDF_LIB/../ | ||
endif | ||
|
||
if ( $COMPILER == "pgi") then | ||
module load pgi/14.10 | ||
module load mvapich2/2.1 | ||
module load netcdf/4.3.2 | ||
|
||
module load pnetcdf/1.6.1 | ||
setenv PNETCDFROOT $NETCDF_LIB/../ | ||
|
||
module load mkl/15.0.1 | ||
setenv MKL_PATH $MLIB_LIB | ||
setenv NETCDF_HOME $NETCDF_LIB/../ | ||
endif | ||
|
||
#------------------------------------------------------------------------------- | ||
|
||
limit coredumpsize 1000000 | ||
limit stacksize unlimited | ||
|
||
if ( $?PERL ) then | ||
printenv | ||
endif | ||
|
||
|