-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsubmissionCommands.dat
More file actions
44 lines (31 loc) · 1.23 KB
/
submissionCommands.dat
File metadata and controls
44 lines (31 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
### Submission Commands ###
# Select the desired submission command by placing an
# asterisk and space in front of it; if multiple commands
# are asterisked, the last command will be used
###
# Choose this if you don't have access to a batch farm nor an installation of GNU parallel
simple
# generic qsub with logging
qsub -V -terse -o $LOGDIR/ -e $LOGDIR/
# Gridengine batch farm
qsub -V -terse -l h_cpu=$h_cpu -l h_rss=$h_vmem -l tmpdir_size=$tmpdir_size -o $LOGDIR/ -e $LOGDIR/
# Gridengine batch farm -- YIG
qsub -P cta_high -V -terse -l h_cpu=$h_cpu -l h_rss=$h_vmem -l tmpdir_size=$tmpdir_size -o $LOGDIR/ -e $LOGDIR/
# HTCondor
# submit the job
condor_submit
# write condor files only
* condor
# script testing
test
# DESY batch farm -- no qsub logs
qsub -V -terse -l h_cpu=$h_cpu -l h_rss=$h_vmem -l tmpdir_size=$tmpdir_size -j y -o /dev/null
# U Chicago
qsub -V -terse,-l nodes=1,walltime=60:00:00,cput=86400
# University of Iowa
qsub -V -terse -q all.q -r y -j y -o /dev/null
qsub -V -terse -q UI -tc 25 -o $LOGDIR/ -e $LOGDIR/
# McGill
sbatch --nodelist=biggams,romulus,reedbuck --mem=1gb --ntasks-per-node=1
# Local parallel execution using GNU parallel
parallel --no-notice -j `grep -ic ^processor /proc/cpuinfo`