Skip to content

Commit

Permalink
use el7 singularity container
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wassmer committed Jul 26, 2024
1 parent 20b427f commit 4fbba84
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions toolbox/condorSubmit.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@
log = {dir}/{name}submitScript.$(Cluster)_$(ProcId).log
output = {dir}/{name}submitScript.$(Cluster)_$(ProcId).out
run_as_owner = true
Requirements = ( OpSysAndVer == "CentOS7" )
Requirements = ( OpSysAndVer == "RedHat9" )
RequestMemory = {memory}
RequestDisk = {disk}
+RequestRuntime = {runtime}
Request_Cpus = {ncores}
JobBatchName = {batchname}
+MySingularityImage = "/cvmfs/unpacked.cern.ch/registry.hub.docker.com/cmssw/el7:x86_64"
+MySingularityArgs = "--bind /nfs:/nfs --bind /pnfs:/pnfs --bind /afs:/afs --bind /cvmfs:/cvmfs"
"""

submitTemplateETP = """
Expand All @@ -35,7 +37,7 @@
log = {dir}/{name}submitScript.$(Cluster)_$(ProcId).log
output = {dir}/{name}submitScript.$(Cluster)_$(ProcId).out
run_as_owner = true
Requirements = ( OpSysAndVer == "CentOS7" )
Requirements = ( OpSysAndVer == "RedHat9" )
RequestMemory = {memory}
RequestDisk = {disk}
+RequestWalltime = {runtime}
Expand Down

0 comments on commit 4fbba84

Please sign in to comment.