~/.bashrc
. Here, it assumes we are operating out of the m5034
project directory.export CFS=/global/cfs/cdirs/m5034/$USERexport COMMON=/global/common/software/m5034/commonexport SOFTWARE=$COMMON/softwaremodule use --append $COMMON/modulefiles
$SCRATCH
, which is available without defining anything in your ~/.bashrc
. Data may be purged after 8 weeks, so this is for temporary storage only.quacc
, you can set the SCRATCH_DIR
setting to $SCRATCH
to ensure calculations are always running in $SCRATCH
. The RESULTS_DIR
will default to your current working directory or can be set manually (e.g. to a folder in $CFS
).$CFS
. It is not backed up but is also not purged.$SOFTWARE
.#!/bin/bash#SBATCH -N 1#SBATCH -C gpu#SBATCH -G 4#SBATCH -q debug#SBATCH -J test#SBATCH -t 00:30:00#SBATCH -A AccountID_gmodule load pythonmodule load vasp/6.5.1_gpuexport OMP_NUM_THREADS=8export OMP_PLACES=threadsexport OMP_PROC_BIND=spreadsrun -N 1 -n 4 -c 32 --cpu_bind=cores -G 4 --gpu-bind=none stdbuf --output=L vasp_std # or vasp_gam