-
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.
Merge remote-tracking branch 'ryan/rgknox-cime-eddimachine' Summary: This PR contains the addition of machine configuration files for eddi, a GNU/Linux system. Eddi does not have a batch system, no batch directives were applied. Eddi is a workstation and is only intended for single site and small grids. Eddi is used by a limited number of researchers on the NGEET project who understand its usage and limited support. Fixes: None User interface changes?: new MACH=eddi configuration case Code review: knox Test suite: ed - lawrencium-lr3-intel; ed - yellowstone intel, pgi, gnu Test baseline: 534d152 Test namelist changes: None Test answer changes: None Test summary: All lrc-intel expected PASS were passes. yellowstone passed except for expected failures in #14, #43.
- Loading branch information
Showing
4 changed files
with
79 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,29 @@ | ||
#! /bin/csh -f | ||
|
||
# ------------------------------------------------------------------------- | ||
# eddi.lbl.gov | ||
# eddi is a linux PC workstation that does not use module environments | ||
# ------------------------------------------------------------------------- | ||
|
||
set CESM_REPO = `./xmlquery CCSM_REPOTAG -value` | ||
|
||
if($status == 0) then | ||
set COMPILER = `./xmlquery COMPILER -value` | ||
set MPILIB = `./xmlquery MPILIB -value` | ||
set DEBUG = `./xmlquery DEBUG -value` | ||
set OS = `./xmlquery OS -value` | ||
set PROJECT = `./xmlquery PROJECT -value` | ||
else | ||
echo $0 using settings from environment: | ||
endif | ||
|
||
echo "COMPILER=$COMPILER" | ||
echo "MPILIB=$MPILIB" | ||
echo "DEBUG=$DEBUG" | ||
echo "OS=$OS" | ||
echo "PROJECT=$PROJECT" | ||
|
||
#limit coredumpsize unlimited | ||
if ( $?PERL ) then | ||
printenv | ||
endif |