Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Liu, Hong
Cades Training
Commits
98337f1c
Commit
98337f1c
authored
Jan 21, 2020
by
Dietz, Colin
Browse files
Reorganized slurm examples, re-named readme files
parent
7408fbe0
Changes
17
Expand all
Hide whitespace changes
Inline
Side-by-side
challenges/
challengesreadme
.md
→
challenges/
README
.md
View file @
98337f1c
File moved
challenges/globus/
readme
.md
→
challenges/globus/
README
.md
View file @
98337f1c
File moved
challenges/gpu/
readme
.md
→
challenges/gpu/
README
.md
View file @
98337f1c
File moved
challenges/jobarray/jobarrayreadme.md
deleted
100644 → 0
View file @
7408fbe0
Job Array instructions
challenges/login/
loginreadme
.md
→
challenges/login/
README
.md
View file @
98337f1c
File moved
challenges/slurm-qe/Quantum_Espresso_Example/QE-job-49286-task-0.out
deleted
100644 → 0
View file @
7408fbe0
This diff is collapsed.
Click to expand it.
challenges/slurm-qe/Quantum_Espresso_Example/QE-job-49286-task-1.out
deleted
100644 → 0
View file @
7408fbe0
This diff is collapsed.
Click to expand it.
challenges/slurm
-qe/slurmreadme
.md
→
challenges/slurm
/README
.md
View file @
98337f1c
File moved
challenges/slurm
-qe/Quantum_Espresso_Example
/in
→
challenges/slurm
/data
/in
View file @
98337f1c
...
...
@@ -9,8 +9,9 @@
tprnfor = .false.,
outdir = './',
wfcdir = './',
pseudo_dir = './pseudo/'
disk_io = 'low'
pseudo_dir = '../data/pseudo/'
disk_io = 'none'
max_seconds = 120
/
&system
ibrav = 0
...
...
challenges/slurm
-qe/Quantum_Espresso_Example
/in2
→
challenges/slurm
/data
/in2
View file @
98337f1c
...
...
@@ -9,8 +9,9 @@
tprnfor = .false.,
outdir = './',
wfcdir = './',
pseudo_dir = './pseudo/'
disk_io = 'low'
pseudo_dir = '../data/pseudo/'
disk_io = 'none'
max_seconds = 120
/
&system
ibrav = 0
...
...
challenges/slurm
-qe/Quantum_Espresso_Example
/pseudo/Ni.pbe-n-kjpaw_psl.0.1.UPF
→
challenges/slurm
/data
/pseudo/Ni.pbe-n-kjpaw_psl.0.1.UPF
View file @
98337f1c
File moved
challenges/slurm
-qe/Quantum_Espresso_Example
/pseudo/O.pbe-n-kjpaw_psl.0.1.UPF
→
challenges/slurm
/data
/pseudo/O.pbe-n-kjpaw_psl.0.1.UPF
View file @
98337f1c
File moved
challenges/slurm/example1/ex1_job_script.pbs
0 → 100644
View file @
98337f1c
#!/bin/bash
#PBS -N spring-training-ex1
#PBS -A birthright-burst
#PBS -w group_list=cades-birthright
#PBS -q batch
#PBS -l qos=burst
#PBS -l nodes=1:ppn=32
#PBS -l mem=10g
#PBS -l walltime=30:00
module purge
module load PE-intel
module load QE
mpirun pw.x
-in
../data/in
challenges/slurm/example2/ex2_job_script.pbs
0 → 100644
View file @
98337f1c
#!/bin/bash
#PBS -N spring-training-ex2
#PBS -A birthright-burst
#PBS -w group_list=cades-birthright
#PBS -q batch
#PBS -l qos=burst
#PBS -l nodes=1:ppn=32
#PBS -l mem=100g
#PBS -l walltime=30:00
#PBS -a 0-1%2
module purge
module load PE-intel
module load QE
input_files
=(
in
in2
)
mpirun pw.x
-in
"
${
input_files
[
$SLURM_ARRAY_TASK_ID
]
}
"
challenges/slurm/solutions/example1/ex1_job_script.sbatch
0 → 100644
View file @
98337f1c
#!/bin/bash
#SBATCH -J spring-training-ex1
#SBATCH -A birthright
#SBATCH -p burst
#SBATCH -N 2
#SBATCH -n 32
#SBATCH -c 1
#SBATCH --mem=0
#SBATCH -t 00:30:00
export
OMP_NUM_THREADS
=
1
module purge
module load PE-intel
module load QE
mpirun pw.x
-in
./in
challenges/slurm
-qe/Quantum_Espresso_Example/qe_example.s
h
→
challenges/slurm
/solutions/example2/ex2_job_script.sbatc
h
View file @
98337f1c
#!/bin/bash
#SBATCH -A staff
#SBATCH -p high_mem
#SBATCH -N 2
#SBATCH -J spring-training-ex2
#SBATCH -A birthright
#SBATCH -p burst
#SBATCH -N 1
#SBATCH -n 32
#SBATCH -c 1
#SBATCH --mem=0
#SBATCH -J espresso-test
#SBATCH -o QE-job-%A-task-%a.out
#SBATCH -t 00:30:00
#SBATCH -a 0-1%2
...
...
@@ -17,7 +19,4 @@ module load PE-intel
module load QE
input_files
=(
in
in2
)
echo
"Input File:
${
input_files
[
$SLURM_ARRAY_TASK_ID
]
}
"
mpirun pw.x
-in
"
${
input_files
[
$SLURM_ARRAY_TASK_ID
]
}
"
challenges/software/
softwarereadme
.md
→
challenges/software/
README
.md
View file @
98337f1c
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment