From 5ff504fa09da35a9fb45f3be6aecc038d3d53b49 Mon Sep 17 00:00:00 2001 From: Gerard Weatherby Date: Mon, 19 Sep 2022 10:30:10 -0400 Subject: [PATCH] Update location of pdb.sub file --- cluster.sub | 12 ++++++++++++ pdb.sub | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 cluster.sub create mode 100644 pdb.sub diff --git a/cluster.sub b/cluster.sub new file mode 100644 index 0000000..dff057a --- /dev/null +++ b/cluster.sub @@ -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 + diff --git a/pdb.sub b/pdb.sub new file mode 100644 index 0000000..24a47df --- /dev/null +++ b/pdb.sub @@ -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...