Difference between revisions of "NAS"
(Created page with " Category: ComputeFacilities Wiki for information related to the '''NASA Advanced Supercomputing''' ('''NAS''') facility. == Quick Links == * [https://www.nas.nasa.gov/h...") |
|||
Line 3: | Line 3: | ||
Wiki for information related to the '''NASA Advanced Supercomputing''' ('''NAS''') facility. | Wiki for information related to the '''NASA Advanced Supercomputing''' ('''NAS''') facility. | ||
− | == | + | ==Overview== |
− | + | {| class="wikitable" style="text-align:center;" | |
+ | ! Key | ||
+ | ! Value | ||
+ | ! Notes | ||
+ | |- | ||
+ | | style="font-weight:bold; text-align:left;" | Machines | ||
+ | | Pleiades | ||
+ | | Compute | ||
+ | |- | ||
+ | | | ||
+ | | Lou | ||
+ | | Storage and Analysis | ||
+ | |- | ||
+ | | | ||
+ | | Electra | ||
+ | | Compute | ||
+ | |- | ||
+ | | | ||
+ | | Endeavour | ||
+ | | Compute | ||
+ | |- | ||
+ | | | ||
+ | | Merope | ||
+ | | Compute | ||
+ | |- | ||
+ | | style="font-weight:bold; text-align:left;" | Job Submission System | ||
+ | | [https://www.nas.nasa.gov/hecc/support/kb/portable-batch-system-(pbs)-overview_126.html PBS] | ||
+ | | | ||
+ | |- | ||
+ | | style="font-weight:bold; text-align:left;" | Facility Documentation | ||
+ | | [https://www.nas.nasa.gov/hecc/support/kb/ Support Knowledgebase] | ||
+ | | | ||
+ | |} | ||
Revision as of 08:58, 23 July 2020
Wiki for information related to the NASA Advanced Supercomputing (NAS) facility.
Overview
Key | Value | Notes |
---|---|---|
Machines | Pleiades | Compute |
Lou | Storage and Analysis | |
Electra | Compute | |
Endeavour | Compute | |
Merope | Compute | |
Job Submission System | PBS | |
Facility Documentation | Support Knowledgebase |
How-To's
Backup Data from Scratch Directories
This is done simply by copying data from the /nobackup/$USER
directories to your home directory on Lou (lfe</code). The <code>/nobackup/$USER
directories are mounted onto lfe
, so transfers should be done on lfe
.
This can be done with scp
, but is recommended to use NASA's in-house utility shiftc
.
Commands:
jrwrigh7@lfe7: shiftc -r -d --sync /nobackup/jrwrigh7/models/STGFlatPlate/STFM_Tet_dz4-10_dx15 .
This will copy the directory STFM_Tet_dz4-10_dx15
to the current location. The flags do as follows
-
-r
: Recursively copy files from destination -
-d
: Create required directories that don't already exist. Equivalent of the-p
flag formkdir
-
--sync
: Only copy over "new" files, where "new" are any changes to the modification time or file size.
Once this command is submitted, the transfer process will be backgrounded. Progress can be viewed by running shiftc --monitor
. Additionally, you will recieve an email with the transfer job is completed.
More documentation for shiftc
can be found in the man page (man shiftc
) and on NAS's documentation website.