Skip to content

Commit

Permalink
Update location of pdb.sub file
Browse files Browse the repository at this point in the history
  • Loading branch information
gweatherby committed Sep 19, 2022
1 parent f718066 commit 5ff504f
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cluster.sub
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

universe = vanilla

# What to do - use the full path
executable = /bin/touch
arguments = files/$(PROCID)

log = logs/touch.log
output = logs/touch_$(PROCID).out
error = logs/touch_$(PROCID).err
queue 5

36 changes: 36 additions & 0 deletions pdb.sub
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

universe = vanilla

# What to do - use the full path
executable = /bin/echo
arguments = example $(JobName).pdb

# Requirements to run
request_memory = 1G
request_cpus = 1
request_gpus = 0

requirements = ((Target.Release == "2022.22") || (Target.Release == "2022.21"))
+Production = True

# Where to log
output = logs/$(JobName).stdout
error = logs/$(JobName).stderr
log = logs/run.log

# Rely on a shared filesystem
transfer_executable = FALSE
should_transfer_files = NO

# Specify different arguments for each submission
# JobName is a variable I defined - not something built in to condor
JobName = 2dog
queue

JobName = 2cow
queue

JobName = 1rcf
queue

# etc...

0 comments on commit 5ff504f

Please sign in to comment.