-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/CICE-Consortium/Icepack i…
…nto HEAD
- Loading branch information
Showing
9 changed files
with
83 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ notifications: | |
email: false | ||
|
||
after_failure: | ||
- "for runlog in travis_suite.travisCItest/*.travisCItest/logs/icepack.runlog.*; do | ||
- "for runlog in $TRAVIS_BUILD_DIR/travis_suite.travisCItest/*.travisCItest/logs/icepack.runlog.*; do | ||
echo \"### Contents of $runlog ###\" && cat $runlog; done" | ||
- "git config --global user.email '[email protected]' && | ||
git config --global user.name 'ciceconsortium' && | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
Icepack 1.0.0 | ||
v1.0.0.d0003 |
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,33 @@ | ||
#============================================================================== | ||
# Makefile macros for NCAR cheyenne, intel compiler | ||
#============================================================================== | ||
|
||
CPP := fpp | ||
CPPDEFS := -DFORTRANUNDERSCORE -DNO_R16 -DHAVE_F2008_CONTIGUOUS -DLINUX -DCPRINTEL ${ICE_CPPDEFS} | ||
CFLAGS := -qno-opt-dynamic-align -fp-model precise -std=gnu99 | ||
|
||
FIXEDFLAGS := -fixed -132 | ||
FREEFLAGS := -free | ||
FFLAGS := -qno-opt-dynamic-align -convert big_endian -assume byterecl -ftz -traceback -assume realloc_lhs -fp-model source -lifcore | ||
FFLAGS_NOOPT:= -O0 | ||
FC_AUTO_R8 := -r8 | ||
|
||
ifeq ($(ICE_BLDDEBUG), true) | ||
FFLAGS += -O0 -g -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created | ||
else | ||
FFLAGS += -O2 -debug minimal | ||
endif | ||
|
||
ifeq ($(ICE_COMMDIR), mpi) | ||
FC := mpif90 | ||
LD := mpif90 | ||
else | ||
FC := ifort | ||
LD := ifort | ||
endif | ||
|
||
SLIBS := -Wl,-rpath,/usr/local/intel-cluster-15.0.2.164/composer_xe_2015.2.164/compiler/lib/intel64 -lifcore | ||
|
||
ifeq ($(DITTO), yes) | ||
CPPDEFS := $(CPPDEFS) -DREPRODUCIBLE | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/csh -f | ||
|
||
source /usr/share/Modules/init/csh | ||
|
||
module load compiler/intel/default | ||
|
||
setenv ICE_MACHINE_ENVNAME hobart | ||
setenv ICE_MACHINE_COMPILER nag | ||
setenv ICE_MACHINE_MAKE gmake | ||
setenv ICE_MACHINE_WKDIR /scratch/cluster/$user/ICEPACK_RUNS | ||
setenv ICE_MACHINE_INPUTDATA /fs/cgd/csm/inputdata | ||
setenv ICE_MACHINE_BASELINE /scratch/cluster/$user/ICEPACK_BASELINE | ||
setenv ICE_MACHINE_SUBMIT "qsub" | ||
setenv ICE_MACHINE_ACCT P00000000 | ||
setenv ICE_MACHINE_TPNODE 24 | ||
setenv ICE_MACHINE_BLDTHRDS 1 |
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