Changes
Page history
epd created page: ESPRESSO
authored
Feb 14, 2017
by
Doak, Peter W.
Show whitespace changes
Inline
Side-by-side
Cades.md
View page @
875809eb
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
# :zap: LUSTRE FILE SYSTEM MIGRATION is progress, [see below](Cades#file-system) :zap:
# :zap: LUSTRE FILE SYSTEM MIGRATION is progress, [see below](Cades#file-system) :zap:
This is the CNMS's newest computing resource.
This is the CNMS's newest computing resource.
## Make yourself a [slack account](https://cades-condos.slack.com)
## Make yourself a [slack account](https://cades-condos.slack.com)
...
@@ -51,6 +52,21 @@ There is only one queue: batch
...
@@ -51,6 +52,21 @@ There is only one queue: batch
See this gitlab repo's examples for the pbs commands, there are more than on most clusters and they matter.
See this gitlab repo's examples for the pbs commands, there are more than on most clusters and they matter.
### Basic PBS header
```
shell
#!/bin/bash
#PBS -S /bin/bash
#PBS -m be
#PBS -M youremail@ornl.gov
#PBS -N job_name
#PBS -q batch
#PBS -l nodes=2:ppn=32:hw32
#PBS -l walltime=00:30:00
#PBS -l naccesspolicy=singlejob
#PBS -W group_list=cades-cnms
#PBS -l qos=condo
```
## [Sample PBS Scripts] (https://code.ornl.gov/CNMS/CNMS_Computing_Resources/blob/master/CADES) ##
## [Sample PBS Scripts] (https://code.ornl.gov/CNMS/CNMS_Computing_Resources/blob/master/CADES) ##
There are examples for most of the installed codes in the repo.
There are examples for most of the installed codes in the repo.
```
shell
```
shell
...
...
...
...