-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcondor.submit_file
53 lines (42 loc) · 1.29 KB
/
condor.submit_file
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
45
46
47
48
49
50
51
52
53
##################
#
# Example Job for HTCondor
#
####################
#---------------------------------------------
# Name your batch so it's easy to distinguish in the q.
JobBatchName = "OursDataset"
# --------------------------------------
# Executable and its arguments
executable = run.sh
# arguments =
# -----------------------------------
# Universe (vanilla, docker)
universe = docker
docker_image = registry.eps.surrey.ac.uk/pinakinathc:latest
# -------------------------------------
# Event, out and error logs
log = c$(cluster).p$(process).log
output = c$(cluster).p$(process).out
error = c$(cluster).p$(process).error
# -----------------------------------
# File Transfer, Input, Output
should_transfer_files = YES
when_to_transfer_output = ON_EXIT_OR_EVICT
environment = "mount=/vol/research/sketchcaption/"
# ------------------------------------
requirements = ( HasStornext == true ) && ( CUDACapability >= 6.2 )
# -------------------------------------
# Resources
request_GPUs = 1
+GPUMem = 10000
request_CPUs = 12
request_memory = 8000
#This job will complete in less than 1 hours
#NB interactive jobs are limited to 4 hours
+JobRunTime = 72
#This job can checkpoint
+CanCheckpoint = true
# -----------------------------------
# Queue commands
queue 1