diff --git a/_includes/quick-start-module.js b/_includes/quick-start-module.js index d294890743bc..75bec4d827ef 100644 --- a/_includes/quick-start-module.js +++ b/_includes/quick-start-module.js @@ -8,7 +8,7 @@ var supportedOperatingSystems = new Map([ var supportedComputePlatforms = new Map([ ['cuda10.2', new Set(['linux', 'windows'])], ['cuda11.x', new Set(['linux', 'windows'])], - ['rocm4.2', new Set(['linux'])], + ['rocm4.x', new Set(['linux'])], ['accnone', new Set(['linux', 'macos', 'windows'])], ]); @@ -115,21 +115,35 @@ function disableUnsupportedPlatforms(os) { }); } -// Change CUDA version depending on build type +// Change compute versiosn depending on build type function changeCUDAVersion(ptbuild) { - var element = document.getElementById("cuda11.x"); - if (element == null) { + var cuda_element = document.getElementById("cuda11.x"); + var rocm_element = document.getElementById("rocm4.x"); + if (cuda_element == null) { console.log("Failed to find cuda11.x element"); return; } - if (element.childElementCount != 1) { + if (cuda_element.childElementCount != 1) { console.log("Unexpected number of children for cuda11.x element"); return; } - if (ptbuild == "preview" || ptbuild == "stable") { - element.children[0].textContent = "CUDA 11.3"; + if (rocm_element == null) { + console.log("Failed to find rocm4.x element"); + return; + } + if (rocm_element.childElementCount != 1) { + console.log("Unexpected number of children for rocm4.x element"); + return; + } + if (ptbuild == "preview") { + rocm_element.children[0].textContent = "ROCM 4.3 (beta)"; + cuda_element.children[0].textContent = "CUDA 11.3"; + } else if (ptbuild == "stable") { + rocm_element.children[0].textContent = "ROCM 4.2 (beta)"; + cuda_element.children[0].textContent = "CUDA 11.3"; } else { - element.children[0].textContent = "CUDA 11.1"; + rocm_element.children[0].textContent = "ROCM 4.2 (beta)"; + cuda_element.children[0].textContent = "CUDA 11.1"; } } diff --git a/_includes/quick_start_local.html b/_includes/quick_start_local.html index b44c9fb213d0..5d58e121373b 100644 --- a/_includes/quick_start_local.html +++ b/_includes/quick_start_local.html @@ -96,7 +96,7 @@
CUDA 11.3
-
+
ROCm 4.2 (beta)
diff --git a/assets/quick-start-module.js b/assets/quick-start-module.js index 385bbb28b981..33366bfa63e0 100644 --- a/assets/quick-start-module.js +++ b/assets/quick-start-module.js @@ -8,7 +8,7 @@ var supportedOperatingSystems = new Map([ var supportedComputePlatforms = new Map([ ['cuda10.2', new Set(['linux', 'windows'])], ['cuda11.x', new Set(['linux', 'windows'])], - ['rocm4.2', new Set(['linux'])], + ['rocm4.x', new Set(['linux'])], ['accnone', new Set(['linux', 'macos', 'windows'])], ]); @@ -115,21 +115,35 @@ function disableUnsupportedPlatforms(os) { }); } -// Change CUDA version depending on build type +// Change compute versiosn depending on build type function changeCUDAVersion(ptbuild) { - var element = document.getElementById("cuda11.x"); - if (element == null) { + var cuda_element = document.getElementById("cuda11.x"); + var rocm_element = document.getElementById("rocm4.x"); + if (cuda_element == null) { console.log("Failed to find cuda11.x element"); return; } - if (element.childElementCount != 1) { + if (cuda_element.childElementCount != 1) { console.log("Unexpected number of children for cuda11.x element"); return; } - if (ptbuild == "preview" || ptbuild == "stable") { - element.children[0].textContent = "CUDA 11.3"; + if (rocm_element == null) { + console.log("Failed to find rocm4.x element"); + return; + } + if (rocm_element.childElementCount != 1) { + console.log("Unexpected number of children for rocm4.x element"); + return; + } + if (ptbuild == "preview") { + rocm_element.children[0].textContent = "ROCM 4.3 (beta)"; + cuda_element.children[0].textContent = "CUDA 11.3"; + } else if (ptbuild == "stable") { + rocm_element.children[0].textContent = "ROCM 4.2 (beta)"; + cuda_element.children[0].textContent = "CUDA 11.3"; } else { - element.children[0].textContent = "CUDA 11.1"; + rocm_element.children[0].textContent = "ROCM 4.2 (beta)"; + cuda_element.children[0].textContent = "CUDA 11.1"; } } @@ -228,7 +242,7 @@ $("[data-toggle='cloud-dropdown']").on("click", function(e) { }); function commandMessage(key) { - var object = {"preview,pip,linux,accnone,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,linux,cuda10.2,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html", "preview,pip,linux,cuda11.x,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu113/torch_nightly.html", "preview,pip,linux,rocm4.2,python": "pip3 install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/rocm4.2/torch_nightly.html", "preview,conda,linux,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly", "preview,conda,linux,cuda11.x,python": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch-nightly", "preview,conda,linux,rocm4.2,python": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "preview,conda,linux,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly", "preview,libtorch,linux,accnone,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-cxx11-abi-shared-with-deps-latest.zip", "preview,libtorch,linux,cuda10.2,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu102/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu102/libtorch-cxx11-abi-shared-with-deps-latest.zip", "preview,libtorch,linux,cuda11.x,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu1133/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu113/libtorch-cxx11-abi-shared-with-deps-latest.zip", "preview,libtorch,linux,rocm4.2,cplusplus": "LibTorch binaries are not available for ROCm, please build it from source", "preview,pip,macos,cuda10.2,python": "# On MacOS, we provide CPU-only packages, CUDA functionality is not provided
pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,macos,cuda11.x,python": "# On MacOS, we provide CPU-only packages, CUDA functionality is not provided
pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,macos,rocm4.2,python": "# ROCm is not available on MacOS
pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,macos,accnone,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,conda,macos,cuda10.2,python": "conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,macos,cuda11.x,python": "conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,macos,rocm4.2,python": "NOTE: ROCm is not available on MacOS", "preview,conda,macos,accnone,python": "conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,libtorch,macos,accnone,cplusplus": "Download here:
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip", "preview,libtorch,macos,cuda10.2,cplusplus": "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip", "preview,libtorch,macos,cuda11.x,cplusplus": "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip", "preview,libtorch,macos,rocm4.2,cplusplus": "ROCm is not available on MacOS. Download CPU libtorch here:
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip", "preview,pip,windows,accnone,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,windows,cuda10.2,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html", "preview,pip,windows,cuda11.x,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu113/torch_nightly.html", "preview,pip,windows,rocm4.2,python": "NOTE: ROCm is not available on Windows", "preview,conda,windows,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly", "preview,conda,windows,cuda11.x,python": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch-nightly", "preview,conda,windows,rocm4.2,python": "NOTE: ROCm is not available on Windows", "preview,conda,windows,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly", "preview,libtorch,windows,accnone,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-debug-latest.zip", "preview,libtorch,windows,cuda10.2,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cu102/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cu102/libtorch-win-shared-with-deps-debug-latest.zip", "preview,libtorch,windows,cuda11.x,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cu113/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cu113/libtorch-win-shared-with-deps-debug-latest.zip", "preview,libtorch,windows,rocm4.2,cplusplus": "NOTE: ROCm is not available on Windows", "lts,pip,linux,accnone,python": "pip3 install torch==1.8.2+cpu torchvision==0.9.2+cpu torchaudio==0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,linux,cuda10.2,python": "pip3 install torch==1.8.2+cu102 torchvision==0.9.2+cu102 torchaudio==0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,linux,cuda11.x,python": "pip3 install torch==1.8.2+cu111 torchvision==0.9.2+cu111 torchaudio==0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,linux,rocm4.2,python": "NOTE: ROCm is not supported in LTS", "lts,conda,linux,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-lts", "lts,conda,linux,cuda11.x,python": "NOTE: 'nvidia' channel is required for cudatoolkit 11.1
conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c nvidia", "lts,conda,linux,rocm4.2,python": "NOTE: ROCm is not supported in LTS", "lts,conda,linux,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-lts", "lts,libtorch,linux,accnone,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-shared-with-deps-1.8.2%2Bcpu.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcpu.zip", "lts,libtorch,linux,cuda10.2,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-shared-with-deps-1.8.2%2Bcu102.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcu102.zip", "lts,libtorch,linux,cuda11.x,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-shared-with-deps-1.8.2%2Bcu111.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcu111.zip", "lts,libtorch,linux,rocm4.2,cplusplus": "NOTE: ROCm is not supported in LTS", "lts,pip,macos,cuda10.2,python": "# macOS is not currently supported for lts", "lts,pip,macos,cuda11.x,python": "# macOS is not currently supported for lts", "lts,pip,macos,rocm4.2,python": "# macOS is not currently supported for lts", "lts,pip,macos,accnone,python": "# macOS is not currently supported for lts", "lts,conda,macos,cuda10.2,python": "# macOS is not currently supported for lts", "lts,conda,macos,cuda11.x,python": "# macOS is not currently supported for lts", "lts,conda,macos,rocm4.2,python": "# macOS is not currently supported for lts", "lts,conda,macos,accnone,python": "# macOS is not currently supported for lts", "lts,libtorch,macos,accnone,cplusplus": "# macOS is not currently supported for lts", "lts,libtorch,macos,cuda10.2,cplusplus": "# macOS is not currently supported for lts", "lts,libtorch,macos,cuda11.x,cplusplus": "# macOS is not currently supported for lts", "lts,libtorch,macos,rocm4.2,cplusplus": "# macOS is not currently supported for lts", "lts,pip,windows,accnone,python": "pip3 install torch==1.8.2+cpu torchvision==0.9.2+cpu torchaudio===0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,windows,cuda10.2,python": "pip3 install torch==1.8.2+cu102 torchvision==0.9.2+cu102 torchaudio===0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,windows,cuda11.x,python": "pip3 install torch==1.8.2+cu111 torchvision==0.9.2+cu111 torchaudio===0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,windows,rocm4.2,python": "NOTE: ROCm is not supported in LTS", "lts,conda,windows,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-lts", "lts,conda,windows,cuda11.x,python": "NOTE: 'conda-forge' channel is required for cudatoolkit 11.1
conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c conda-forge", "lts,conda,windows,rocm4.2,python": "NOTE: ROCm is not supported in LTS", "lts,conda,windows,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-lts", "lts,libtorch,windows,accnone,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-win-shared-with-deps-1.8.2%2Bcpu.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-win-shared-with-deps-debug-1.8.2%2Bcpu.zip", "lts,libtorch,windows,cuda10.2,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-win-shared-with-deps-1.8.2%2Bcu102.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-win-shared-with-deps-debug-1.8.2%2Bcu102.zip", "lts,libtorch,windows,cuda11.x,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-win-shared-with-deps-1.8.2%2Bcu111.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-win-shared-with-deps-debug-1.8.2%2Bcu111.zip", "lts,libtorch,windows,rocm4.2,cplusplus": "NOTE: ROCm is not supported in LTS", "stable,pip,linux,accnone,python": "pip3 install torch==1.10.1+cpu torchvision==0.11.2+cpu torchaudio==0.10.1+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html", "stable,pip,linux,cuda10.2,python": "pip3 install torch torchvision torchaudio", "stable,pip,linux,cuda11.x,python": "pip3 install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio==0.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html", "stable,pip,linux,rocm4.2,python": "pip3 install torch torchvision==0.11.2 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html", "stable,conda,linux,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch", "stable,conda,linux,cuda11.x,python": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch", "stable,conda,linux,rocm4.2,python": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "stable,conda,linux,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch", "stable,libtorch,linux,accnone,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.10.1%2Bcpu.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcpu.zip", "stable,libtorch,linux,cuda10.2,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.10.1%2Bcu102.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcu102.zip", "stable,libtorch,linux,cuda11.x,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu113/libtorch-shared-with-deps-1.10.1%2Bcu113.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcu113.zip", "stable,libtorch,linux,rocm4.2,cplusplus": "LibTorch binaries are not available for ROCm, please build it from source", "stable,pip,macos,cuda10.2,python": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed
pip3 install torch torchvision torchaudio", "stable,pip,macos,cuda11.x,python": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed
pip3 install torch torchvision torchaudio", "stable,pip,macos,rocm4.2,python": "NOTE: ROCm is not available on MacOS", "stable,pip,macos,accnone,python": "pip3 install torch torchvision torchaudio", "stable,conda,macos,cuda10.2,python": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed
conda install pytorch torchvision torchaudio -c pytorch", "stable,conda,macos,cuda11.x,python": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed
conda install pytorch torchvision torchaudio -c pytorch", "stable,conda,macos,rocm4.2,python": "NOTE: ROCm is not available on MacOS", "stable,conda,macos,accnone,python": "conda install pytorch torchvision torchaudio -c pytorch", "stable,libtorch,macos,accnone,cplusplus": "Download here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip", "stable,libtorch,macos,cuda10.2,cplusplus": "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip", "stable,libtorch,macos,cuda11.x,cplusplus": "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip", "stable,libtorch,macos,rocm4.2,cplusplus": "NOTE: ROCm is not available on MacOS", "stable,pip,windows,accnone,python": "pip3 install torch torchvision torchaudio", "stable,pip,windows,cuda10.2,python": "pip3 install torch==1.10.1+cu102 torchvision==0.11.2+cu102 torchaudio===0.10.1+cu102 -f https://download.pytorch.org/whl/cu102/torch_stable.html", "stable,pip,windows,cuda11.x,python": "pip3 install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio===0.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html", "stable,pip,windows,rocm4.2,python": "NOTE: ROCm is not available on Windows", "stable,conda,windows,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch", "stable,conda,windows,cuda11.x,python": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch", "stable,conda,windows,rocm4.2,python": "NOTE: ROCm is not available on Windows", "stable,conda,windows,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch", "stable,libtorch,windows,accnone,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.10.1%2Bcpu.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.10.1%2Bcpu.zip", "stable,libtorch,windows,cuda10.2,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.10.1%2Bcu102.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.10.1%2Bcu102.zip", "stable,libtorch,windows,cuda11.x,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-1.10.1%2Bcu113.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.10.1%2Bcu113.zip", "stable,libtorch,windows,rocm4.2,cplusplus": "NOTE: ROCm is not available on Windows"}; + var object = {"preview,pip,linux,accnone,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,linux,cuda10.2,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html", "preview,pip,linux,cuda11.x,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu113/torch_nightly.html", "preview,pip,linux,rocm4.x,python": "pip3 install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/rocm4.3.1/torch_nightly.html", "preview,conda,linux,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly", "preview,conda,linux,cuda11.x,python": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch-nightly", "preview,conda,linux,rocm4.x,python": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "preview,conda,linux,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly", "preview,libtorch,linux,accnone,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-cxx11-abi-shared-with-deps-latest.zip", "preview,libtorch,linux,cuda10.2,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu102/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu102/libtorch-cxx11-abi-shared-with-deps-latest.zip", "preview,libtorch,linux,cuda11.x,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu1133/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu113/libtorch-cxx11-abi-shared-with-deps-latest.zip", "preview,libtorch,linux,rocm4.x,cplusplus": "LibTorch binaries are not available for ROCm, please build it from source", "preview,pip,macos,cuda10.2,python": "# On MacOS, we provide CPU-only packages, CUDA functionality is not provided
pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,macos,cuda11.x,python": "# On MacOS, we provide CPU-only packages, CUDA functionality is not provided
pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,macos,rocm4.x,python": "# ROCm is not available on MacOS
pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,macos,accnone,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,conda,macos,cuda10.2,python": "conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,macos,cuda11.x,python": "conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,macos,rocm4.x,python": "NOTE: ROCm is not available on MacOS", "preview,conda,macos,accnone,python": "conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,libtorch,macos,accnone,cplusplus": "Download here:
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip", "preview,libtorch,macos,cuda10.2,cplusplus": "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip", "preview,libtorch,macos,cuda11.x,cplusplus": "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip", "preview,libtorch,macos,rocm4.x,cplusplus": "ROCm is not available on MacOS. Download CPU libtorch here:
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip", "preview,pip,windows,accnone,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html", "preview,pip,windows,cuda10.2,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html", "preview,pip,windows,cuda11.x,python": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu113/torch_nightly.html", "preview,pip,windows,rocm4.x,python": "NOTE: ROCm is not available on Windows", "preview,conda,windows,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly", "preview,conda,windows,cuda11.x,python": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch-nightly", "preview,conda,windows,rocm4.x,python": "NOTE: ROCm is not available on Windows", "preview,conda,windows,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly", "preview,libtorch,windows,accnone,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-win-shared-with-deps-debug-latest.zip", "preview,libtorch,windows,cuda10.2,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cu102/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cu102/libtorch-win-shared-with-deps-debug-latest.zip", "preview,libtorch,windows,cuda11.x,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cu113/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cu113/libtorch-win-shared-with-deps-debug-latest.zip", "preview,libtorch,windows,rocm4.x,cplusplus": "NOTE: ROCm is not available on Windows", "lts,pip,linux,accnone,python": "pip3 install torch==1.8.2+cpu torchvision==0.9.2+cpu torchaudio==0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,linux,cuda10.2,python": "pip3 install torch==1.8.2+cu102 torchvision==0.9.2+cu102 torchaudio==0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,linux,cuda11.x,python": "pip3 install torch==1.8.2+cu111 torchvision==0.9.2+cu111 torchaudio==0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,linux,rocm4.x,python": "NOTE: ROCm is not supported in LTS", "lts,conda,linux,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-lts", "lts,conda,linux,cuda11.x,python": "NOTE: 'nvidia' channel is required for cudatoolkit 11.1
conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c nvidia", "lts,conda,linux,rocm4.x,python": "NOTE: ROCm is not supported in LTS", "lts,conda,linux,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-lts", "lts,libtorch,linux,accnone,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-shared-with-deps-1.8.2%2Bcpu.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcpu.zip", "lts,libtorch,linux,cuda10.2,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-shared-with-deps-1.8.2%2Bcu102.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcu102.zip", "lts,libtorch,linux,cuda11.x,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-shared-with-deps-1.8.2%2Bcu111.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcu111.zip", "lts,libtorch,linux,rocm4.x,cplusplus": "NOTE: ROCm is not supported in LTS", "lts,pip,macos,cuda10.2,python": "# macOS is not currently supported for lts", "lts,pip,macos,cuda11.x,python": "# macOS is not currently supported for lts", "lts,pip,macos,rocm4.x,python": "# macOS is not currently supported for lts", "lts,pip,macos,accnone,python": "# macOS is not currently supported for lts", "lts,conda,macos,cuda10.2,python": "# macOS is not currently supported for lts", "lts,conda,macos,cuda11.x,python": "# macOS is not currently supported for lts", "lts,conda,macos,rocm4.x,python": "# macOS is not currently supported for lts", "lts,conda,macos,accnone,python": "# macOS is not currently supported for lts", "lts,libtorch,macos,accnone,cplusplus": "# macOS is not currently supported for lts", "lts,libtorch,macos,cuda10.2,cplusplus": "# macOS is not currently supported for lts", "lts,libtorch,macos,cuda11.x,cplusplus": "# macOS is not currently supported for lts", "lts,libtorch,macos,rocm4.x,cplusplus": "# macOS is not currently supported for lts", "lts,pip,windows,accnone,python": "pip3 install torch==1.8.2+cpu torchvision==0.9.2+cpu torchaudio===0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,windows,cuda10.2,python": "pip3 install torch==1.8.2+cu102 torchvision==0.9.2+cu102 torchaudio===0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,windows,cuda11.x,python": "pip3 install torch==1.8.2+cu111 torchvision==0.9.2+cu111 torchaudio===0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html", "lts,pip,windows,rocm4.x,python": "NOTE: ROCm is not supported in LTS", "lts,conda,windows,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-lts", "lts,conda,windows,cuda11.x,python": "NOTE: 'conda-forge' channel is required for cudatoolkit 11.1
conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c conda-forge", "lts,conda,windows,rocm4.x,python": "NOTE: ROCm is not supported in LTS", "lts,conda,windows,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-lts", "lts,libtorch,windows,accnone,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-win-shared-with-deps-1.8.2%2Bcpu.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/lts/1.8/cpu/libtorch-win-shared-with-deps-debug-1.8.2%2Bcpu.zip", "lts,libtorch,windows,cuda10.2,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-win-shared-with-deps-1.8.2%2Bcu102.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/lts/1.8/cu102/libtorch-win-shared-with-deps-debug-1.8.2%2Bcu102.zip", "lts,libtorch,windows,cuda11.x,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-win-shared-with-deps-1.8.2%2Bcu111.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-win-shared-with-deps-debug-1.8.2%2Bcu111.zip", "lts,libtorch,windows,rocm4.x,cplusplus": "NOTE: ROCm is not supported in LTS", "stable,pip,linux,accnone,python": "pip3 install torch==1.10.1+cpu torchvision==0.11.2+cpu torchaudio==0.10.1+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html", "stable,pip,linux,cuda10.2,python": "pip3 install torch torchvision torchaudio", "stable,pip,linux,cuda11.x,python": "pip3 install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio==0.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html", "stable,pip,linux,rocm4.x,python": "pip3 install torch torchvision==0.11.2 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html", "stable,conda,linux,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch", "stable,conda,linux,cuda11.x,python": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch", "stable,conda,linux,rocm4.x,python": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "stable,conda,linux,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch", "stable,libtorch,linux,accnone,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.10.1%2Bcpu.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcpu.zip", "stable,libtorch,linux,cuda10.2,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.10.1%2Bcu102.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcu102.zip", "stable,libtorch,linux,cuda11.x,cplusplus": "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu113/libtorch-shared-with-deps-1.10.1%2Bcu113.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcu113.zip", "stable,libtorch,linux,rocm4.x,cplusplus": "LibTorch binaries are not available for ROCm, please build it from source", "stable,pip,macos,cuda10.2,python": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed
pip3 install torch torchvision torchaudio", "stable,pip,macos,cuda11.x,python": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed
pip3 install torch torchvision torchaudio", "stable,pip,macos,rocm4.x,python": "NOTE: ROCm is not available on MacOS", "stable,pip,macos,accnone,python": "pip3 install torch torchvision torchaudio", "stable,conda,macos,cuda10.2,python": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed
conda install pytorch torchvision torchaudio -c pytorch", "stable,conda,macos,cuda11.x,python": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed
conda install pytorch torchvision torchaudio -c pytorch", "stable,conda,macos,rocm4.x,python": "NOTE: ROCm is not available on MacOS", "stable,conda,macos,accnone,python": "conda install pytorch torchvision torchaudio -c pytorch", "stable,libtorch,macos,accnone,cplusplus": "Download here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip", "stable,libtorch,macos,cuda10.2,cplusplus": "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip", "stable,libtorch,macos,cuda11.x,cplusplus": "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip", "stable,libtorch,macos,rocm4.x,cplusplus": "NOTE: ROCm is not available on MacOS", "stable,pip,windows,accnone,python": "pip3 install torch torchvision torchaudio", "stable,pip,windows,cuda10.2,python": "pip3 install torch==1.10.1+cu102 torchvision==0.11.2+cu102 torchaudio===0.10.1+cu102 -f https://download.pytorch.org/whl/cu102/torch_stable.html", "stable,pip,windows,cuda11.x,python": "pip3 install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio===0.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html", "stable,pip,windows,rocm4.x,python": "NOTE: ROCm is not available on Windows", "stable,conda,windows,cuda10.2,python": "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch", "stable,conda,windows,cuda11.x,python": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch", "stable,conda,windows,rocm4.x,python": "NOTE: ROCm is not available on Windows", "stable,conda,windows,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch", "stable,libtorch,windows,accnone,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.10.1%2Bcpu.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.10.1%2Bcpu.zip", "stable,libtorch,windows,cuda10.2,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.10.1%2Bcu102.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.10.1%2Bcu102.zip", "stable,libtorch,windows,cuda11.x,cplusplus": "Download here (Release version):
https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-1.10.1%2Bcu113.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.10.1%2Bcu113.zip", "stable,libtorch,windows,rocm4.x,cplusplus": "NOTE: ROCm is not available on Windows"}; var lts_notice = "
Note: Additional support for these binaries may be provided by PyTorch Enterprise Support Program Participants.
"; if (!object.hasOwnProperty(key)) { diff --git a/published_versions.json b/published_versions.json index 2ae9a7e85e01..47443c5f5b15 100644 --- a/published_versions.json +++ b/published_versions.json @@ -17,9 +17,9 @@ "note": null, "command": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu113/torch_nightly.html" }, - "rocm4.2": { + "rocm4.x": { "note": null, - "command": "pip3 install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/rocm4.2/torch_nightly.html" + "command": "pip3 install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/rocm4.3.1/torch_nightly.html" } }, "conda": { @@ -31,7 +31,7 @@ "note": null, "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch-nightly" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "command": null }, @@ -62,7 +62,7 @@ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu113/libtorch-cxx11-abi-shared-with-deps-latest.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "LibTorch binaries are not available for ROCm, please build it from source", "versions": null } @@ -78,7 +78,7 @@ "note": "# On MacOS, we provide CPU-only packages, CUDA functionality is not provided", "command": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html" }, - "rocm4.2": { + "rocm4.x": { "note": "# ROCm is not available on MacOS", "command": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html" }, @@ -96,7 +96,7 @@ "note": null, "command": "conda install pytorch torchvision torchaudio -c pytorch-nightly" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -124,7 +124,7 @@ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": null, "versions": { "ROCm is not available on MacOS. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-latest.zip" @@ -146,7 +146,7 @@ "note": null, "command": "pip3 install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu113/torch_nightly.html" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null } @@ -160,7 +160,7 @@ "note": null, "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch-nightly" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null }, @@ -191,7 +191,7 @@ "Download here (Debug version):": "https://download.pytorch.org/libtorch/nightly/cu113/libtorch-win-shared-with-deps-debug-latest.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "versions": null } @@ -213,7 +213,7 @@ "note": null, "command": "pip3 install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio==0.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html" }, - "rocm4.2": { + "rocm4.x": { "note": null, "command": "pip3 install torch torchvision==0.11.2 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html" } @@ -227,7 +227,7 @@ "note": null, "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "command": null }, @@ -258,7 +258,7 @@ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.10.1%2Bcu113.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "LibTorch binaries are not available for ROCm, please build it from source", "versions": null } @@ -274,7 +274,7 @@ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "command": "pip3 install torch torchvision torchaudio" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -292,7 +292,7 @@ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "command": "conda install pytorch torchvision torchaudio -c pytorch" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -320,7 +320,7 @@ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.1.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "versions": null } @@ -340,7 +340,7 @@ "note": null, "command": "pip3 install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio===0.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null } @@ -354,7 +354,7 @@ "note": null, "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null }, @@ -385,7 +385,7 @@ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.10.1%2Bcu113.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "versions": null } @@ -407,7 +407,7 @@ "note": null, "command": "pip3 install torch==1.10.0+cu113 torchvision==0.11.1+cu113 torchaudio==0.10.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html" }, - "rocm4.2": { + "rocm4.x": { "note": null, "command": "pip3 install torch torchvision==0.11.1 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html" } @@ -421,7 +421,7 @@ "note": null, "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "command": null }, @@ -452,7 +452,7 @@ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu113/libtorch-cxx11-abi-shared-with-deps-1.10.0%2Bcu113.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "LibTorch binaries are not available for ROCm, please build it from source", "versions": null } @@ -468,7 +468,7 @@ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "command": "pip3 install torch torchvision torchaudio" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -486,7 +486,7 @@ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "command": "conda install pytorch torchvision torchaudio -c pytorch" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -514,7 +514,7 @@ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.10.0.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "versions": null } @@ -534,7 +534,7 @@ "note": null, "command": "pip3 install torch==1.10.0+cu113 torchvision==0.11.1+cu113 torchaudio===0.10.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null } @@ -548,7 +548,7 @@ "note": null, "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null }, @@ -579,7 +579,7 @@ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu113/libtorch-win-shared-with-deps-debug-1.10.0%2Bcu113.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "versions": null } @@ -601,7 +601,7 @@ "note": null, "command": "pip3 install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html" }, - "rocm4.2": { + "rocm4.x": { "note": null, "command": "pip3 install torch torchvision==0.10.0 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html" } @@ -615,7 +615,7 @@ "note": "NOTE: 'nvidia' channel is required for cudatoolkit 11.1", "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c nvidia" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "command": null }, @@ -646,7 +646,7 @@ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu111/libtorch-cxx11-abi-shared-with-deps-1.9.0%2Bcu111.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "LibTorch binaries are not available for ROCm, please build it from source", "versions": null } @@ -662,7 +662,7 @@ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "command": "pip3 install torch torchvision torchaudio" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -680,7 +680,7 @@ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "command": "conda install pytorch torchvision torchaudio -c pytorch" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -708,7 +708,7 @@ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.9.0.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "versions": null } @@ -728,7 +728,7 @@ "note": null, "command": "pip3 install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio===0.9.0 -f https://download.pytorch.org/whl/torch_stable.html" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null } @@ -742,7 +742,7 @@ "note": "NOTE: 'conda-forge' channel is required for cudatoolkit 11.1", "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c conda-forge" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null }, @@ -773,7 +773,7 @@ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu111/libtorch-win-shared-with-deps-debug-1.9.0%2Bcu111.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "versions": null } @@ -795,7 +795,7 @@ "note": null, "command": "pip3 install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html" }, - "rocm4.2": { + "rocm4.x": { "note": null, "command": "pip3 install torch torchvision==0.10.1 -f https://download.pytorch.org/whl/rocm4.2/torch_stable.html" } @@ -809,7 +809,7 @@ "note": "NOTE: 'nvidia' channel is required for cudatoolkit 11.1", "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c nvidia" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
", "command": null }, @@ -840,7 +840,7 @@ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu111/libtorch-cxx11-abi-shared-with-deps-1.9.1%2Bcu111.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "LibTorch binaries are not available for ROCm, please build it from source", "versions": null } @@ -856,7 +856,7 @@ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "command": "pip3 install torch torchvision torchaudio" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -874,7 +874,7 @@ "note": "# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "command": "conda install pytorch torchvision torchaudio -c pytorch" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "command": null }, @@ -902,7 +902,7 @@ "MacOS binaries do not support CUDA. Download CPU libtorch here:": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.9.1.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on MacOS", "versions": null } @@ -922,7 +922,7 @@ "note": null, "command": "pip3 install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio===0.9.1 -f https://download.pytorch.org/whl/torch_stable.html" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null } @@ -936,7 +936,7 @@ "note": "NOTE: 'conda-forge' channel is required for cudatoolkit 11.1", "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c conda-forge" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "command": null }, @@ -967,7 +967,7 @@ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu111/libtorch-win-shared-with-deps-debug-1.9.1%2Bcu111.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not available on Windows", "versions": null } @@ -989,7 +989,7 @@ "note": null, "command": "pip3 install torch==1.8.2+cu111 torchvision==0.9.2+cu111 torchaudio==0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not supported in LTS", "command": null } @@ -1003,7 +1003,7 @@ "note": "NOTE: 'nvidia' channel is required for cudatoolkit 11.1", "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c nvidia" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not supported in LTS", "command": null }, @@ -1034,7 +1034,7 @@ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-cxx11-abi-shared-with-deps-1.8.2%2Bcu111.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not supported in LTS", "versions": null } @@ -1050,7 +1050,7 @@ "note": "# macOS is not currently supported for lts", "command": null }, - "rocm4.2": { + "rocm4.x": { "note": "# macOS is not currently supported for lts", "command": null }, @@ -1068,7 +1068,7 @@ "note": "# macOS is not currently supported for lts", "command": null }, - "rocm4.2": { + "rocm4.x": { "note": "# macOS is not currently supported for lts", "command": null }, @@ -1090,7 +1090,7 @@ "note": "# macOS is not currently supported for lts", "versions": null }, - "rocm4.2": { + "rocm4.x": { "note": "# macOS is not currently supported for lts", "versions": null } @@ -1110,7 +1110,7 @@ "note": null, "command": "pip3 install torch==1.8.2+cu111 torchvision==0.9.2+cu111 torchaudio===0.8.2 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not supported in LTS", "command": null } @@ -1124,7 +1124,7 @@ "note": "NOTE: 'conda-forge' channel is required for cudatoolkit 11.1", "command": "conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c conda-forge" }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not supported in LTS", "command": null }, @@ -1155,7 +1155,7 @@ "Download here (Debug version):": "https://download.pytorch.org/libtorch/lts/1.8/cu111/libtorch-win-shared-with-deps-debug-1.8.2%2Bcu111.zip" } }, - "rocm4.2": { + "rocm4.x": { "note": "NOTE: ROCm is not supported in LTS", "versions": null }