-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f718066
commit 5ff504f
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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... |