Created
August 6, 2020 09:17
-
-
Save jwz-ecust/773708d35629a39033085f147bbe91ab to your computer and use it in GitHub Desktop.
vasp.script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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