Submit: Difference between revisions

From Wiki
Jump to navigation Jump to search
New page: ####################################### ############## SGE VARS ############# #!/bin/bash #$ -N tightorcaoptb3lypd3CO #$ -cwd #$ -pe c12m128gpu8_smp 12 #$ -m ae #$ -M mbesora@iciq.cat #$ ...
 
No edit summary
Line 1: Line 1:
go back to [[Main_Page]], [[Computational Resources]], [[Clusters]], [[Local Clusters]], [[Kimik2]]
<nowiki>
#######################################
#######################################
############## SGE VARS  #############
############## SGE VARS  #############
Line 35: Line 38:
time $ORCA_HOME/orca tightorcaoptb3lypd3CO.in > tightorcaoptb3lypd3CO.out
time $ORCA_HOME/orca tightorcaoptb3lypd3CO.in > tightorcaoptb3lypd3CO.out
cp -f *.out $DIRECTORY/.
cp -f *.out $DIRECTORY/.
</nowiki>

Revision as of 14:00, 15 October 2018

go back to Main_Page, Computational Resources, Clusters, Local Clusters, Kimik2

####################################### ############## SGE VARS ############# #!/bin/bash #$ -N tightorcaoptb3lypd3CO #$ -cwd #$ -pe c12m128gpu8_smp 12 #$ -m ae #$ -M mbesora@iciq.cat #$ -r n #$ -masterq c12m128gpu8.q #$ -o $JOB_NAME.o$JOB_ID #$ -e $JOB_NAME.e$JOB_ID #$ -l credits=0 #$ -S /bin/bash ####################################### ############### APP VARS ############# . /etc/profile.d/modules.sh module load orca/4.0 ####################################### ############### USER VARS ############# export TMPDIR=/scratch DIRECTORY=$PWD SCRIPT=tightorcaoptb3lypd3CO ####################################### ############ PREEXECUTION ############# mkdir $TMPDIR/$JOB_NAME.$JOB_ID cd $TMPDIR/$JOB_NAME.$JOB_ID cp $DIRECTORY/$SCRIPT.in ./ ####################################### ########### EXEC ########## time $ORCA_HOME/orca tightorcaoptb3lypd3CO.in > tightorcaoptb3lypd3CO.out cp -f *.out $DIRECTORY/.