Skip to content

Instantly share code, notes, and snippets.

@jwz-ecust
Created August 6, 2020 09:17
Show Gist options
  • Save jwz-ecust/773708d35629a39033085f147bbe91ab to your computer and use it in GitHub Desktop.
Save jwz-ecust/773708d35629a39033085f147bbe91ab to your computer and use it in GitHub Desktop.
vasp.script
#! /bin/bash
#SBATCH --nodes=$${nodes}
#SBATCH --ntasks=$${ntasks}
#SBATCH --ntasks-per-node=$${ntasks_per_node}
#SBATCH --cpus-per-task=$${cpus_per_task}
#SBATCH --gres=$${gres}
#SBATCH --qos=$${qos}
#SBATCH --time=$${walltime}
#SBATCH --partition=$${queue}
#SBATCH --account=$${account}
#SBATCH --job-name=$${job_name}
#SBATCH --license=$${license}
#SBATCH --output=$${job_name}-%j.out
#SBATCH --error=$${job_name}-%j.error
#SBATCH --constraint=$${constraint}
$${pre_rocket}
source /home/chem/intel/bin/compilervars.sh intel64
ulimit -s unlimited
cd $${launch_dir}
$${rocket_launch}
$${post_rocket}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment