File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 124124cp input.log $SubmitDir/
125125rm -rf $WorkDir
126126
127+ """ ,
128+
129+ 'psi4' : """#!/bin/bash -l
130+ #SBATCH -p normal
131+ #SBATCH -J {name}
132+ #SBATCH -N 1
133+ #SBATCH -n {cpus}
134+ #SBATCH --time={t_max}
135+ #SBATCH --mem-per-cpu={memory}
136+ #SBATCH -o out.txt
137+ #SBATCH -e err.txt
138+
139+ echo "============================================================"
140+ echo "Job ID : $SLURM_JOB_ID"
141+ echo "Job Name : $SLURM_JOB_NAME"
142+ echo "Starting on : $(date)"
143+ echo "Running on node : $SLURMD_NODENAME"
144+ echo "Current directory : $(pwd)"
145+ echo "============================================================"
146+
147+ touch initial_time
148+
149+ conda activate psi4_env
150+ psi4 input.dat
151+
152+ touch final_time
153+
127154""" ,
128155 'molpro' : """#!/bin/bash -l
129156#SBATCH -p long
You can’t perform that action at this time.
0 commit comments