Skip to content

Commit e69fa62

Browse files
authored
Merge pull request pytorch#498 from pytorch/malfet/add-links-to-cuda11-nightly-binaries
Add links to CUDA-11 nightly packages
2 parents 9d5bd78 + bb6b54f commit e69fa62

File tree

2 files changed

+43
-4
lines changed

2 files changed

+43
-4
lines changed

_includes/quick_start_local.html

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,19 @@
8585
<div class="col-md-12 title-block mobile-heading">
8686
<div class="option-text">CUDA</div>
8787
</div>
88-
<div class="col-md-3 option block version" id="cuda9.2">
88+
<div class="col-md option block version" id="cuda9.2">
8989
<div class="option-text">9.2</div>
9090
</div>
91-
<div class="col-md-3 option block version" id="cuda10.1">
91+
<div class="col-md option block version" id="cuda10.1">
9292
<div class="option-text">10.1</div>
9393
</div>
94-
<div class="col-md-3 option block version selected" id="cuda10.2">
94+
<div class="col-md option block version selected" id="cuda10.2">
9595
<div class="option-text">10.2</div>
9696
</div>
97-
<div class="col-md-3 option block version" id="cudanone">
97+
<div class="col-md option block version" id="cuda11.0">
98+
<div class="option-text">11.0</div>
99+
</div>
100+
<div class="col-md option block version" id="cudanone">
98101
<div class="option-text">None</div>
99102
</div>
100103
</div>

assets/quick-start-module.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@ function commandMessage(key) {
196196
"stable,conda,macos,cuda10.2,python":
197197
"conda install pytorch torchvision -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
198198

199+
"stable,conda,macos,cuda11.0,python":
200+
"conda install pytorch torchvision -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
201+
199202
"stable,conda,macos,cudanone,python":
200203
"conda install pytorch torchvision -c pytorch",
201204

@@ -217,6 +220,9 @@ function commandMessage(key) {
217220
"stable,pip,macos,cuda10.2,python":
218221
"pip install torch torchvision<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
219222

223+
"stable,pip,macos,cuda11.0,python":
224+
"pip install torch torchvision<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
225+
220226
"stable,pip,macos,cudanone,python": "pip install torch torchvision",
221227

222228
"stable,pip,linux,cudanone,python":
@@ -264,6 +270,9 @@ function commandMessage(key) {
264270
"stable,libtorch,macos,cuda10.2,cplusplus":
265271
"MacOS binaries do not support CUDA. Download CPU libtorch here: <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.6.0.zip'> https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.6.0.zip </a>",
266272

273+
"stable,libtorch,macos,cuda11.0,cplusplus":
274+
"MacOS binaries do not support CUDA. Download CPU libtorch here: <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.6.0.zip'> https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.6.0.zip </a>",
275+
267276
"stable,libtorch,windows,cudanone,cplusplus":
268277
"Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.6.0%2Bcpu.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.6.0%2Bcpu.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.6.0%2Bcpu.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.6.0%2Bcpu.zip</a>",
269278

@@ -282,6 +291,9 @@ function commandMessage(key) {
282291
"preview,conda,linux,cuda10.2,python":
283292
"conda install pytorch torchvision cudatoolkit=10.2 -c pytorch-nightly",
284293

294+
"preview,conda,linux,cuda11.0,python":
295+
"conda install pytorch torchvision cudatoolkit=11.0 -c pytorch-nightly",
296+
285297
"preview,conda,linux,cudanone,python":
286298
"conda install pytorch torchvision cpuonly -c pytorch-nightly",
287299

@@ -294,6 +306,9 @@ function commandMessage(key) {
294306
"preview,conda,macos,cuda10.2,python":
295307
"conda install pytorch torchvision -c pytorch-nightly",
296308

309+
"preview,conda,macos,cuda11.0,python":
310+
"conda install pytorch torchvision -c pytorch-nightly",
311+
297312
"preview,conda,macos,cudanone,python":
298313
"conda install pytorch torchvision -c pytorch-nightly",
299314

@@ -306,6 +321,9 @@ function commandMessage(key) {
306321
"preview,conda,windows,cuda10.2,python":
307322
"conda install pytorch torchvision cudatoolkit=10.2 -c pytorch-nightly",
308323

324+
"preview,conda,windows,cuda11.0,python":
325+
"conda install pytorch torchvision cudatoolkit=11.0 -c pytorch-nightly",
326+
309327
"preview,conda,windows,cudanone,python":
310328
"conda install pytorch torchvision cpuonly -c pytorch-nightly",
311329

@@ -318,6 +336,9 @@ function commandMessage(key) {
318336
"preview,pip,macos,cuda10.2,python":
319337
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
320338

339+
"preview,pip,macos,cuda11.0,python":
340+
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
341+
321342
"preview,pip,macos,cudanone,python":
322343
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html",
323344

@@ -333,6 +354,9 @@ function commandMessage(key) {
333354
"preview,pip,linux,cuda10.2,python":
334355
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html",
335356

357+
"preview,pip,linux,cuda11.0,python":
358+
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu110/torch_nightly.html",
359+
336360
"preview,pip,windows,cudanone,python":
337361
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html",
338362

@@ -345,6 +369,9 @@ function commandMessage(key) {
345369
"preview,pip,windows,cuda10.2,python":
346370
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html",
347371

372+
"preview,pip,windows,cuda11.0,python":
373+
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu110/torch_nightly.html",
374+
348375
"preview,libtorch,linux,cudanone,cplusplus":
349376
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cpu/libtorch-shared-with-deps-latest.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-cxx11-abi-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cpu/libtorch-cxx11-abi-shared-with-deps-latest.zip</a>",
350377

@@ -357,6 +384,9 @@ function commandMessage(key) {
357384
"preview,libtorch,linux,cuda10.2,cplusplus":
358385
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/nightly/cu102/libtorch-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cu102/libtorch-shared-with-deps-latest.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/nightly/cu102/libtorch-cxx11-abi-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cu102/libtorch-cxx11-abi-shared-with-deps-latest.zip</a>",
359386

387+
"preview,libtorch,linux,cuda11.0,cplusplus":
388+
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/nightly/cu110/libtorch-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cu110/libtorch-shared-with-deps-latest.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/nightly/cu110/libtorch-cxx11-abi-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cu110/libtorch-cxx11-abi-shared-with-deps-latest.zip</a>",
389+
360390
"preview,libtorch,macos,cudanone,cplusplus":
361391
"Download here: <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip'> https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip </a>",
362392

@@ -369,6 +399,9 @@ function commandMessage(key) {
369399
"preview,libtorch,macos,cuda10.2,cplusplus":
370400
"MacOS binaries do not support CUDA. Download CPU libtorch here: <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip'> https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip </a>",
371401

402+
"preview,libtorch,macos,cuda11.0,cplusplus":
403+
"MacOS binaries do not support CUDA. Download CPU libtorch here: <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip'> https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip </a>",
404+
372405
"preview,libtorch,windows,cudanone,cplusplus":
373406
"Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-latest.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-debug-latest.zip'>https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-debug-latest.zip</a>",
374407

@@ -380,6 +413,9 @@ function commandMessage(key) {
380413

381414
"preview,libtorch,windows,cuda10.2,cplusplus":
382415
"Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/nightly/cu102/libtorch-win-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cu102/libtorch-win-shared-with-deps-latest.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/nightly/cu102/libtorch-win-shared-with-deps-debug-latest.zip'>https://download.pytorch.org/libtorch/nightly/cu102/libtorch-win-shared-with-deps-debug-latest.zip</a>",
416+
417+
"preview,libtorch,windows,cuda11.0,cplusplus":
418+
"Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/nightly/cu110/libtorch-win-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cu110/libtorch-win-shared-with-deps-latest.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/nightly/cu110/libtorch-win-shared-with-deps-debug-latest.zip'>https://download.pytorch.org/libtorch/nightly/cu110/libtorch-win-shared-with-deps-debug-latest.zip</a>",
383419
};
384420

385421
if (!object.hasOwnProperty(key)) {

0 commit comments

Comments
 (0)