cc_staff
229
edits
Line 57: | Line 57: | ||
|contents= | |contents= | ||
#!/bin/bash | #!/bin/bash | ||
#SBATCH -- | # | ||
#SBATCH --ntasks 1 # number of tasks | |||
#SBATCH --mem 1024 # memory pool per process | |||
#SBATCH -o slurm.%N.%j.out # STDOUT | |||
#SBATCH -t 0:20:00 # time (D-HH:MM) | |||
#SBATCH --gres=gpu:1 | |||
module load namd-multicore/2.12 | |||
namd2 +p1 +idlepoll apoa1.namd | |||
}} | }} | ||
==== | ==== Verbs Job ==== | ||
Instructions will be provided once this configuration can be tested on the new clusters. | |||
==== GPU Job ==== | ==== GPU Job ==== | ||
This example uses 8 CPU cores and 1 GPU on a single node. | |||
{{File | |||
|name=multicore_gpu_namd_job.sh | |||
|lang="sh" | |||
|contents= | |||
#!/bin/bash | |||
# | |||
#SBATCH --ntasks 8 # number of tasks | |||
#SBATCH --mem 1024 # memory pool per process | |||
#SBATCH -o slurm.%N.%j.out # STDOUT | |||
#SBATCH -t 0:05:00 # time (D-HH:MM) | |||
#SBATCH --gres=gpu:1 | |||
module load cuda/8.0.44 | |||
module load namd-multicore/2.12 | |||
namd2 +p8 +idlepoll apoa1.namd | |||
}} | |||
= Usage = | = Usage = |