forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquick-start-module.js
265 lines (240 loc) · 7.68 KB
/
quick-start-module.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
// Keys are Substrings as diplayed by navigator.platform
var supportedOperatingSystems = new Map([
['linux', 'linux'],
['mac', 'macos'],
['win', 'windows'],
]);
var archInfoMap = new Map([
['cuda', {title: "CUDA", platforms: new Set(['linux', 'windows'])}],
['rocm', {title: "ROCm", platforms: new Set(['linux'])}],
['accnone', {title: "CPU", platforms: new Set(['linux', 'macos', 'windows'])}]
]);
let version_map={{ ACC ARCH MAP }}
let stable_version={{ VERSION }};
var default_selected_os = getAnchorSelectedOS() || getDefaultSelectedOS();
var opts = {
cuda: getPreferredCuda(default_selected_os),
os: default_selected_os,
pm: 'pip',
language: 'python',
ptbuild: 'stable',
};
var supportedCloudPlatforms = [
'aws',
'google-cloud',
'microsoft-azure',
];
var os = $(".os > .option");
var package = $(".package > .option");
var language = $(".language > .option");
var cuda = $(".cuda > .option");
var ptbuild = $(".ptbuild > .option");
os.on("click", function() {
selectedOption(os, this, "os");
});
package.on("click", function() {
selectedOption(package, this, "pm");
});
language.on("click", function() {
selectedOption(language, this, "language");
});
cuda.on("click", function() {
selectedOption(cuda, this, "cuda");
});
ptbuild.on("click", function() {
selectedOption(ptbuild, this, "ptbuild")
});
// Pre-select user's operating system
$(function() {
var userOsOption = document.getElementById(opts.os);
var userCudaOption = document.getElementById(opts.cuda);
if (userOsOption) {
$(userOsOption).trigger("click");
}
if (userCudaOption) {
$(userCudaOption).trigger("click");
}
});
// determine os (mac, linux, windows) based on user's platform
function getDefaultSelectedOS() {
var platform = navigator.platform.toLowerCase();
for (var [navPlatformSubstring, os] of supportedOperatingSystems.entries()) {
if (platform.indexOf(navPlatformSubstring) !== -1) {
return os;
}
}
// Just return something if user platform is not in our supported map
return supportedOperatingSystems.values().next().value;
}
// determine os based on location hash
function getAnchorSelectedOS() {
var anchor = location.hash;
var ANCHOR_REGEX = /^#[^ ]+$/;
// Look for anchor in the href
if (!ANCHOR_REGEX.test(anchor)) {
return false;
}
// Look for anchor with OS in the first portion
var testOS = anchor.slice(1).split("-")[0];
for (var [navPlatformSubstring, os] of supportedOperatingSystems.entries()) {
if (testOS.indexOf(navPlatformSubstring) !== -1) {
return os;
}
}
return false;
}
// determine CUDA version based on OS
function getPreferredCuda(os) {
// Only CPU builds are currently available for MacOS
if (os == 'macos') {
return 'accnone';
}
return 'cuda.x';
}
// Disable compute platform not supported on OS
function disableUnsupportedPlatforms(os) {
for (const [arch_key, info] of archInfoMap) {
var elems = document.querySelectorAll('[id^="'+arch_key+'"]');
if (elems == null) {
console.log("Failed to find element for architecture " + arch_key);
return;
}
for (var i=0; i < elems.length;i++) {
var supported = info.platforms.has(os);
elems[i].style.textDecoration = supported ? "" : "line-through";
}
}
}
// Change compute versions depending on build type
function changeVersion(ptbuild) {
if(ptbuild == "preview")
archMap = version_map.nightly
else
archMap = version_map.release
for (const [arch_key, info] of archInfoMap) {
var elems = document.querySelectorAll('[id^="'+arch_key+'"]');
for (var i=0; i < elems.length;i++) {
elems[i].children[0].textContent = info.title + " " + archMap[elems[i].id][1]
}
}
var stable_element = document.getElementById("stable");
stable_element.children[0].textContent = stable_version;
}
// Change accnone name depending on OS type
function changeAccNoneName(osname) {
var accnone_element = document.getElementById("accnone");
if (accnone_element == null) {
console.log("Failed to find accnone element");
return;
}
if (osname == "macos") {
accnone_element.children[0].textContent = "Default";
} else {
accnone_element.children[0].textContent = "CPU";
}
}
function selectedOption(option, selection, category) {
$(option).removeClass("selected");
$(selection).addClass("selected");
opts[category] = selection.id;
if (category === "pm") {
var elements = document.getElementsByClassName("language")[0].children;
if (selection.id !== "libtorch" && elements["cplusplus"].classList.contains("selected")) {
$(elements["cplusplus"]).removeClass("selected");
$(elements["python"]).addClass("selected");
opts["language"] = "python";
} else if (selection.id == "libtorch") {
for (var i = 0; i < elements.length; i++) {
if (elements[i].id === "cplusplus") {
$(elements[i]).addClass("selected");
opts["language"] = "cplusplus";
} else {
$(elements[i]).removeClass("selected");
}
}
}
} else if (category === "language") {
var elements = document.getElementsByClassName("package")[0].children;
if (selection.id !== "cplusplus" && elements["libtorch"].classList.contains("selected")) {
$(elements["libtorch"]).removeClass("selected");
$(elements["pip"]).addClass("selected");
opts["pm"] = "pip";
} else if (selection.id == "cplusplus") {
for (var i = 0; i < elements.length; i++) {
if (elements[i].id === "libtorch") {
$(elements[i]).addClass("selected");
opts["pm"] = "libtorch";
} else {
$(elements[i]).removeClass("selected");
}
}
}
} else if (category == "ptbuild") {
changeVersion(opts.ptbuild);
}
commandMessage(buildMatcher());
if (category === "os") {
disableUnsupportedPlatforms(opts.os);
display(opts.os, 'installation', 'os');
}
changeAccNoneName(opts.os);
}
function display(selection, id, category) {
var container = document.getElementById(id);
// Check if there's a container to display the selection
if (container === null) {
return;
}
var elements = container.getElementsByClassName(category);
for (var i = 0; i < elements.length; i++) {
if (elements[i].classList.contains(selection)) {
$(elements[i]).addClass("selected");
} else {
$(elements[i]).removeClass("selected");
}
}
}
function buildMatcher() {
return (
opts.ptbuild.toLowerCase() +
"," +
opts.pm.toLowerCase() +
"," +
opts.os.toLowerCase() +
"," +
opts.cuda.toLowerCase() +
"," +
opts.language.toLowerCase()
);
}
// Cloud Partners sub-menu toggle listeners
$("[data-toggle='cloud-dropdown']").on("click", function(e) {
if ($(this).hasClass("open")) {
$(this).removeClass("open");
// If you deselect a current drop-down item, don't display it's info any longer
display(null, 'cloud', 'platform');
} else {
$("[data-toggle='cloud-dropdown'].open").removeClass("open");
$(this).addClass("open");
var cls = $(this).find(".cloud-option-body")[0].className;
for (var i = 0; i < supportedCloudPlatforms.length; i++) {
if (cls.includes(supportedCloudPlatforms[i])) {
display(supportedCloudPlatforms[i], 'cloud', 'platform');
}
}
}
});
function commandMessage(key) {
var object = {{ installMatrix }};
if (!object.hasOwnProperty(key)) {
$("#command").html(
"<pre> # Follow instructions at this URL: https://github.com/pytorch/pytorch#from-source </pre>"
);
} else if (key.indexOf("lts") == 0 && key.indexOf('rocm') < 0) {
$("#command").html("<pre>" + object[key] + "</pre>");
} else {
$("#command").html("<pre>" + object[key] + "</pre>");
}
}
// Set cuda version right away
changeVersion("stable")