-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAutocbed.sh
More file actions
29 lines (22 loc) · 779 Bytes
/
Autocbed.sh
File metadata and controls
29 lines (22 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
#SBATCH --job-name=autocbed
#SBATCH --partition=stem
#SBATCH --error=autocbed.err # error file
#SBATCH --output=autocbed.out # output file
#SBATCH --time=7-00:00:00 # run time in days-hh:mm:ss
#SBATCH --nodes=1 # number of nodes requested (n)
#SBATCH --ntasks=20 # required number of CPUs (n)
##SBATCH --export=ALL
echo "Date:"
date
echo "Using ACI / HCP / Slurm cluster."
echo "JobID = $SLURM_JOB_ID"
echo "Using $SLURM_NNODES nodes"
echo "Using $SLURM_NODELIST nodes."
echo "Number of cores per node: $SLURM_TASKS_PER_NODE"
echo "Submit directory: $SLURM_SUBMIT_DIR"
echo ""
# Executable
/home/czhang376/bin/Multislice/AutoCBEDcpp/autocbed < Autocbed.input
echo "Finished on:"
date