File tree Expand file tree Collapse file tree 3 files changed +23
-66
lines changed
Expand file tree Collapse file tree 3 files changed +23
-66
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11---
2- cluster : " {{ cluster_name }} "
2+ cluster : " SLURM_CLUSTER "
33attributes :
44 bc_num_hours :
55 value : 1
@@ -23,14 +23,24 @@ attributes:
2323 widget : select
2424 label : Partition
2525 options :
26- - [ "low", "low" ]
26+ - [ "express", "express" ]
27+ - [ "short", "short" ]
28+ - [ "medium", "medium" ]
29+ - [ "long", "long" ]
30+ - [ "interactive", "interactive" ]
31+ - [ "pascalnodes", "pascalnodes" ]
32+ - [ "pascalnodes-medium", "pascalnodes-medium" ]
33+ - [ "largemem", "largemem" ]
34+ - [ "largemem-long", "largemem-long" ]
35+ - [ "amd-hdr100", "amd-hdr100" ]
2736
2837 version :
2938 widget : select
3039 label : " SAS version"
3140 help : " This defines the version of SAS you want to load."
3241 options :
33- - [ "v9.4", "sas/v9.4" ]
42+ - [ "v9.4", "rc/SAS/v9.4" ]
43+
3444form :
3545 - version
3646 - bc_num_hours
Original file line number Diff line number Diff line change 1+ # Job submission configuration file
2+ #
13---
4+ # This config comes from below URL
5+ # https://github.com/OSC/bc_example_jupyter/blob/custom_environment/submit.yml.erb
6+ # The -C option in the config provided for slurm has been removed because it does
7+ # not apply to implementation at UAB. We do not use constraint list to be used with -C.
8+
29batch_connect:
3- template: vnc
10+ template: "vnc"
11+
412script:
513 native:
614 - "-N 1"
917 - "--partition=<%= bc_partition %> "
1018 - "--time=<%= bc_num_hours.blank? ? 1 : bc_num_hours.to_i %> :00:00"
1119 - "--job-name=ood-sas-<%= version.split("/")[-1] %> "
12- <%- if bc_partition == "pascalnodes" -%>
20+ <%- if bc_partition.include? "pascalnodes" -%>
1321 - "--gres=gpu:1"
1422<%- end -%>
You can’t perform that action at this time.
0 commit comments