-
Notifications
You must be signed in to change notification settings - Fork 0
/
app-gpu.json
160 lines (160 loc) · 4.76 KB
/
app-gpu.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"id": "cookbook-jupyter-template-gpu",
"version": "0.0.1",
"description": "Jupyter Lab environment for GPU",
"owner": "${apiUserId}",
"enabled": true,
"runtime": "SINGULARITY",
"runtimeVersion": null,
"runtimeOptions": ["SINGULARITY_RUN"],
"containerImage": "docker://ghcr.io/in-for-disaster-analytics/cookbook-jupyter-template-gpu:0.0.1",
"jobType": "BATCH",
"maxJobs": -1,
"maxJobsPerUser": -1,
"strictFileInputs": true,
"jobAttributes": {
"description": null,
"dynamicExecSystem": false,
"execSystemConstraints": null,
"execSystemId": "ls6",
"execSystemExecDir": "${JobWorkingDir}",
"execSystemInputDir": "${JobWorkingDir}",
"execSystemOutputDir": "${JobWorkingDir}/output",
"execSystemLogicalQueue": "gpu-a100",
"archiveSystemId": "cloud.data",
"archiveSystemDir": "HOST_EVAL($HOME)/tapis-jobs-archive/${JobCreateDate}/${JobName}-${JobUUID}",
"archiveOnAppError": true,
"isMpi": false,
"mpiCmd": null,
"cmdPrefix": "mkdir $PWD/work $PWD/home $PWD/scratch;",
"parameterSet": {
"appArgs": [
{
"name": "Update cookbook",
"description": "Control whether the system will update the existing cookbook with the latest version available. This option is irrelevant if you are running the cookbook for the first time.",
"inputMode": "REQUIRED",
"arg": "false",
"notes": {
"enum_values": [
{
"true": "Update to latest version"
},
{
"false": "Keep current version"
}
]
}
},
{
"name": "Update conda environment",
"description": "Control whether the system will update the existing conda environment with the latest version available. This option is irrelevant if you are running the cookbook for the first time.",
"inputMode": "REQUIRED",
"arg": "false",
"notes": {
"enum_values": [
{
"true": "Update to latest version."
},
{
"false": "Keep current version"
}
]
}
},
{
"name": "Git branch",
"description": "The branch of the git repository to clone.",
"inputMode": "REQUIRED",
"arg": "main",
"notes": {
"isHidden": true,
"enum_values": [
{
"jupyterenv": "Jupyter Lab environment"
},
{
"dev": "Development"
},
{
"main": "main"
}
]
}
}
],
"containerArgs": [
{
"name": "Jupyter Mounts",
"description": "Mount for TAP functions and user dirs",
"inputMode": "FIXED",
"arg": "--bind /share,$WORK:$PWD/work,$HOME:$PWD/home,$SCRATCH:$PWD/scratch",
"notes": {
"isHidden": true
}
},
{
"name": "NVIDIA Flag",
"description": "Flag to enable NVIDIA cuda",
"inputMode": "FIXED",
"arg": "--nv",
"notes": {
"isHidden": true
}
}
],
"schedulerOptions": [
{
"name": "TACC Scheduler Profile",
"description": "Scheduler profile for HPC clusters at TACC",
"inputMode": "FIXED",
"arg": "--tapis-profile tacc-apptainer",
"notes": {
"isHidden": true
}
},
{
"name": "TAP Session Substring",
"description": "TAP Functions require the substring 'tap_' and in the slurm job name in order to function.",
"inputMode": "FIXED",
"arg": "--job-name ${JobName}-tap_",
"notes": {
"isHidden": true
}
}
],
"envVariables": [
{
"key": "APPTAINER_PWD",
"value": "/home/jovyan/work",
"description": "Start terminals in the working directory where host volumes are mounted.",
"inputMode": "FIXED",
"notes": {
"isHidden": true
}
}
],
"archiveFilter": {
"includes": [],
"excludes": [],
"includeLaunchFiles": true
}
},
"fileInputs": [],
"fileInputArrays": [],
"nodeCount": 1,
"coresPerNode": 16,
"memoryMB": 128000,
"maxMinutes": 120,
"subscriptions": [],
"tags": []
},
"tags": ["portalName: ALL"],
"notes": {
"label": "Cookbook - Jupyter Lab (GPU)",
"hideNodeCountAndCoresPerNode": true,
"isInteractive": true,
"icon": "jupyter",
"category": "Data Processing",
"queueFilter": ["gpu-a100", "gpu-a100-dev", "gpu-a100-small"]
}
}