-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.html
More file actions
48 lines (35 loc) · 1.4 KB
/
script.html
File metadata and controls
48 lines (35 loc) · 1.4 KB
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
<!--
Modified By, Bundit Boonyarit <bundit.b_s18@vistec.ac.th>
Scalable Data Systems Lab (SCADS)
School of Information Science and Technology (IST),
Vidyasirimedhi Institute of Science and Technology (VISTEC)
2018
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Slurm Script Generator @Galaxy Cluster</title>
<link rel="stylesheet" type="text/css" href="VISTECJobScriptGenerator.css">
<script type="text/javascript" src="VISTECJobScriptGenerator.js"></script>
</head>
<body>
<div id="VISTECJobScriptGenerator"></div>
<script type="text/javascript">
/* The latest version of the Brigham Young University Script Generator is available at http://github.com/BYUHPC/BYUJobScriptGenerator */
var vistec_script_gen = new VISTECScriptGen(document.getElementById("VISTECJobScriptGenerator"));
/* Dynamically generate this using PHP or whatever. You may also statically configure it */
vistec_script_gen.settings.queue = {
names : [
"qcpu", "qgpu"
],
show : true
};
/* End of stuff */
vistec_script_gen.init();
</script>
<!-- Attribution is not required. Feel free to remove this. -->
<div style="font-size: 10pt;">Modified By: Bundit Boonyarit <br> The latest version of the <span style="font-style: italic;">Brigham Young University Job Script Generator</span> is available on <a href="http://github.com/BYUHPC/BYUJobScriptGenerator">github</a>.</div>
</div>
</body>
</html>