From 2280365b2caa0a7c483b3347eddabff494701735 Mon Sep 17 00:00:00 2001 From: Mark Saroufim Date: Wed, 26 Jun 2024 12:42:21 -0700 Subject: [PATCH 1/2] Update installation instructions --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8aa2c09c6..a743d383e 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,13 @@ A key design principle for us is composability as in any new dtype or layout we ### Installation `torchao` makes liberal use of several new features in Pytorch, it's recommended to use it with the current nightly or latest stable version of PyTorch. -Stable Release +Stable release from Pypi which will default to PyTorch 2.3.1 and CUDA 12.1 + +```Shell +pip install torchao +``` + +Stable Release from the PyTorch index (remove test once they're up on Pypi) ```Shell pip install torchao --extra-index-url https://download.pytorch.org/whl/test/cu121 # full options are cpu/cu118/cu121/cu124 ``` From 4b69ccb4de2ec17555eec65a2aae94c6fa4ee235 Mon Sep 17 00:00:00 2001 From: Mark Saroufim Date: Wed, 26 Jun 2024 13:29:08 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a743d383e..7b03d402e 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ Stable release from Pypi which will default to PyTorch 2.3.1 and CUDA 12.1 pip install torchao ``` -Stable Release from the PyTorch index (remove test once they're up on Pypi) +Stable Release from the PyTorch index ```Shell pip install torchao --extra-index-url https://download.pytorch.org/whl/test/cu121 # full options are cpu/cu118/cu121/cu124 ```