-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.js
275 lines (247 loc) · 9.84 KB
/
form.js
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
'use strict'
/**
* Toggle the visibility of a form group
*
* @param {string} form_id The form identifier
* @param {boolean} show Whether to show or hide
*/
function toggle_visibility_of_form_group(form_id, show) {
let form_element = $(form_id);
let parent = form_element.parent();
if(show) {
parent.show();
} else {
form_element.val('');
parent.hide();
}
}
function convert_timelimit(TIMELIMIT) {
const time_split = TIMELIMIT.split(/[-:]/).map(Number);
var time_in_hours = 0;
if (time_split.length === 3) {
time_in_hours = time_split[0] + time_split[1]/60 + time_split[2]/3600
} else if (time_split.length === 4) {
time_in_hours = time_split[0] * 24 + time_split[1] + time_split[2]/60 + time_split[3]/3600
}
return time_in_hours
}
function convert_gpu_partitions(GRES) {
const gpu_options = [];
if (GRES.length !== 0) {
for (const ind_gres of GRES) {
const gpu_info = ind_gres.split(':');
for (let i = 1; i <= Number(gpu_info.slice(-1)); i++) {
gpu_options.push([gpu_info[0], gpu_info[1], i].join(':'));
}
}
gpu_options.push('');
}
return [...new Set(gpu_options)]
}
function get_associations() {
const raw_data = $('#batch_connect_session_context_raw_data').val();
const raw_groups_data = $('#batch_connect_session_context_raw_group_data').val().split(",").filter(x => x);
const general_access_allocations = raw_groups_data.filter(x => x.startsWith("p") || x.startsWith("e"))
const assocs = [];
// Obtain all unique partition and allocation combinations
for (const assoc of raw_data.split(" ").filter(x => x)) {
const [PARTITION, GROUPS, TIMELIMIT, GRES, MEMORY, CPUS, FEATURE] = assoc.split("|");
const groups = raw_groups_data.filter(value => GROUPS.includes(value));
if (PARTITION.includes("a9009") && raw_groups_data.includes("a9009")) {
assocs.push({ partition: PARTITION,
account: "a9009",
maxtime : convert_timelimit(TIMELIMIT),
gpus: GRES,
max_mem: MEMORY,
max_cpus: CPUS,
feature: FEATURE});
} else if (GROUPS.includes("all") && (general_access_allocations.length !== 0) && (PARTITION !== 'a9009') && (PARTITION !== 'buyin-dev')) {
for (let gen_access of general_access_allocations) {
assocs.push({ partition: PARTITION.replace('*', ''),
account: gen_access,
maxtime : convert_timelimit(TIMELIMIT),
gpus: GRES,
max_mem: MEMORY,
max_cpus: CPUS,
feature: FEATURE});
}
} else if (groups.length !== 0) {
for (const group of groups) {
assocs.push({ partition: PARTITION,
account: group,
maxtime : convert_timelimit(TIMELIMIT),
gpus: GRES,
max_mem: MEMORY,
max_cpus: CPUS,
feature: FEATURE});
}
}
}
return assocs;
}
function replace_options($select, new_options) {
const old_selection = $select.val();
$select.empty();
//new_options.sort().map(option => $select.append($("<option></option>").attr("value", option).text(option)));
new_options.map(option => $select.append($("<option></option>").attr("value", option).text(option)));
if (new_options.includes(old_selection)) {
$select.val(old_selection);
}
}
function reverse_options($select, new_options) {
$select.empty();
new_options.map(option => $select.append($("<option></option>").attr("value", option).text(option)));
}
/**
* Toggle the visibility of the GRES Value field
*/
function toggle_gres_value_field_visibility(assocs) {
const gpu_partitions = [...new Set((assocs.filter(({ gpus }) => gpus !== "(null)")).map(({ gpus }) => gpus))];
toggle_visibility_of_form_group(
'#batch_connect_session_context_gres_value',
gpu_partitions.length !== 0);
replace_options($("#batch_connect_session_context_gres_value"), convert_gpu_partitions(gpu_partitions));
}
/**
* Toggle the visibility of the constraint value field
*/
function update_constraint_options(assocs) {
var constraints_with_commas = [...new Set(assocs.map(({ feature }) => feature))];
var constraints_without_commas = [""];
for (var constraint of constraints_with_commas) { constraints_without_commas.push(constraint.split(",")); }
replace_options($("#batch_connect_session_context_constraint"), [...new Set(constraints_without_commas.flat())]);
}
/**
* If kellogg, set some things
*/
function is_kellogg() {
if ($("#batch_connect_session_context_slurm_partition").val() === 'kellogg') {
toggle_visibility_of_form_group(
'#batch_connect_session_context_request_more_than_one_node',
false);
$("#batch_connect_session_context_constraint").val("rhel8")
var gpu_options = [];
$("#batch_connect_session_context_gres_value option").each(function(index, item) { gpu_options.push(item.value) });
reverse_options($("#batch_connect_session_context_gres_value"), gpu_options.reverse());
} else {
toggle_visibility_of_form_group(
'#batch_connect_session_context_request_more_than_one_node',
true);
}
}
function toggle_number_of_nodes_visibility() {
toggle_visibility_of_form_group(
'#number_of_nodes',
$("#batch_connect_session_context_request_more_than_one_node").is(':checked'));
}
function set_available_accounts() {
let assocs = get_associations();
const selected_partition = $("#batch_connect_session_context_slurm_partition").val();
assocs = assocs.filter(({ partition }) => partition === selected_partition);
const accounts = [...new Set(assocs.map(({ account }) => account))];
replace_options($("#batch_connect_session_context_slurm_account"), accounts);
return assocs
}
function set_min_max(assocs) {
const max_walltime = [...new Set((assocs.map(({ maxtime }) => maxtime)))][0];
const max_mem = Number([...new Set((assocs.map(({ max_mem }) => max_mem)))][0].replace('+', ''));
if (max_walltime === 0) {
$("#batch_connect_session_context_bc_num_hours").attr({
"max" : "",
"min" : 1,
});
} else {
$("#batch_connect_session_context_bc_num_hours").attr({
"max" : max_walltime,
"min" : 1,
});
};
if (max_mem > 264000) {
$("#memory_per_node").attr({
"max" : 2000,
"min" : 1,
});
} else {
$("#memory_per_node").attr({
"max" : 243,
"min" : 1,
});
}
}
function update_available_options() {
let assocs = set_available_accounts();
return assocs
}
function update_min_max(assocs) {
set_min_max(assocs);
}
/**
* Sets the change handler for the slurm partition select.
*/
function set_slurm_partition_change_handler() {
let slurm_partition = $("#batch_connect_session_context_slurm_partition");
slurm_partition.change(() => {
let assocs = update_available_options();
toggle_gres_value_field_visibility(assocs);
update_constraint_options(assocs);
is_kellogg()
update_min_max(assocs);
});
}
function set_more_than_one_node_change_handler() {
let request_more_than_one_node = $("#batch_connect_session_context_request_more_than_one_node");
request_more_than_one_node.click(() => {
toggle_number_of_nodes_visibility();
});
}
/**
* Sets the change handler for the slurm account select.
*/
function set_slurm_account_change_handler() {
const slurm_account = $("#batch_connect_session_context_slurm_account");
slurm_account.change(() => {
update_available_options();
});
}
function set_available_partitions() {
const assocs = get_associations();
const partitions = [...new Set(assocs.map(({ partition }) => partition))];
replace_options($("#batch_connect_session_context_slurm_partition"), partitions);
}
function collapse_help() {
var help_message = $( '.form-text.text-muted' );
$.each(help_message, function(index) {
var form_label = $( '.form-group label' )[index];
var help_text = $( this ).html();
var new_help = $( `<div class="card border-dark mb-2" aria-expanded="false" role="button" data-target=#help_message_${index} aria-controls=help_message_${index} data-toggle="collapse"><div class="card-header"><button type="button" class="btn btn-outline-secondary py-0 px-1"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z"/></button> ${form_label.textContent}</div><div class="collapse" id=help_message_${index}><div class="card-body text-dark" aria-expanded="false"><p class="card-text"><small class="form-text text-muted">${help_text}</small></p></div></div></div>` );
new_help.insertBefore(form_label);
form_label.textContent = '';
form_label.hidden = 'true'
$( this ).remove();
});
};
/**
* Install event handlers
*/
$(document).ready(function() {
// This sets all of the Slurm partitions for this user
set_available_partitions();
// Update available options appropriately
let assocs = update_available_options();
// Ensure that fields are shown or hidden based on what was set in the last session
toggle_gres_value_field_visibility(assocs);
update_constraint_options(assocs);
is_kellogg();
update_min_max(assocs);
toggle_number_of_nodes_visibility();
set_slurm_partition_change_handler();
set_slurm_account_change_handler();
set_more_than_one_node_change_handler();
collapse_help();
$(function () {
$('[data-toggle="tooltip"]').tooltip({'boundary': $("body")});
});
});
$(document.links).filter(function() {
return this.hostname != window.location.hostname;
}).attr('target', '_blank');