From b0031ae8858bb7b42e7c76eaab2d9ed3efb94230 Mon Sep 17 00:00:00 2001 From: Young Hui Date: Fri, 13 Sep 2024 14:45:42 -0400 Subject: [PATCH] adding note to PyTorch docker install to highlight change in definition of latest --- docs/install/3rd-party/pytorch-install.rst | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/docs/install/3rd-party/pytorch-install.rst b/docs/install/3rd-party/pytorch-install.rst index 75183c7..6ef3dd1 100644 --- a/docs/install/3rd-party/pytorch-install.rst +++ b/docs/install/3rd-party/pytorch-install.rst @@ -19,6 +19,10 @@ To install PyTorch for ROCm, you have the following options: * :ref:`using-pytorch-rocm-docker-image` * :ref:`using-pytorch-upstream-docker-image` +.. |br| raw:: html + +
+ For hardware, software, and third-party framework compatibility between ROCm and PyTorch, refer to: * :ref:`system-requirements` @@ -36,7 +40,20 @@ Using a Docker image with PyTorch pre-installed docker pull rocm/pytorch:latest You can also download a specific and supported configuration with different user-space ROCm - versions, PyTorch versions, and operating systems. + versions, PyTorch versions, and operating systems by filtering through the `tags `_. + + .. important:: + + As of ROCm 6.2.1, rocm/pytorch:latest will now point to the latest tested release version of PyTorch (e.g. PyTorch 2.3), similar to rocm/pytorch:latest-release tag. + Prior to ROCm 6.2.1, rocm/pytorch:latest was pointing to a development version of PyTorch, which did not correspond to any specific PyTorch release. + + .. csv-table:: + :header: "Description", "6.2.1 and newer", "6.2.0 and older" + + "Latest tested *release* of PyTorch", **rocm/pytorch:latest** |br| rocm/pytorch:latest-release, rocm/pytorch:latest-release + "Latest dev version of PyTorch", rocm/pytorch:latest-internal, **rocm/pytorch:latest** + + 2. Start a Docker container using the image.