-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add note on need to set MPI_TYPE_DEPTH for LILAC
- Loading branch information
Showing
3 changed files
with
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ | |
|
||
obtaining-and-building-ctsm.rst | ||
setting-ctsm-runtime-options.rst | ||
notes-on-running-ctsm.rst | ||
restarting.rst |
26 changes: 26 additions & 0 deletions
26
doc/source/lilac/obtaining-building-and-running/notes-on-running-ctsm.rst
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,26 @@ | ||
.. highlight:: shell | ||
|
||
.. _notes-on-running-ctsm: | ||
|
||
======================= | ||
Notes on running CTSM | ||
======================= | ||
|
||
.. _runtime-environment-variables: | ||
|
||
Environment variables that may need to be set at runtime | ||
======================================================== | ||
|
||
With the MPT MPI library (which is the default MPI library on NCAR's cheyenne machine), it is important to set the environment variable ``MPI_TYPE_DEPTH`` to 16 when running CTSM (this setting is required by the Parallel IO library). Typically you should set this variable in your job submission script, using either: | ||
|
||
.. code-block:: Bash | ||
export MPI_TYPE_DEPTH=16 | ||
or: | ||
|
||
.. code-block:: Tcsh | ||
setenv MPI_TYPE_DEPTH 16 | ||
prior to running the model. |
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