From 14f9d5fcc75cba8ff06972fad2952ef65be3694d Mon Sep 17 00:00:00 2001 From: Ella Charlaix Date: Fri, 1 Dec 2023 10:14:52 +0100 Subject: [PATCH 1/5] add install instructions --- README.md | 1 + docs/source/installation.mdx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c86fa19c5a..7fb449ccaf 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ If you'd like to use the accelerator-specific features of 🤗 Optimum, you can | [ONNX Runtime](https://onnxruntime.ai/docs/) | `pip install --upgrade-strategy eager optimum[onnxruntime]` | | [Intel Neural Compressor](https://www.intel.com/content/www/us/en/developer/tools/oneapi/neural-compressor.html) | `pip install --upgrade-strategy eager optimum[neural-compressor]`| | [OpenVINO](https://docs.openvino.ai/latest/index.html) | `pip install --upgrade-strategy eager optimum[openvino,nncf]` | +| [AMD Instinct GPUs](https://www.amd.com/en/graphics/instinct-server-accelerators) | `pip install --upgrade-strategy eager optimum[amd]` | | [Habana Gaudi Processor (HPU)](https://habana.ai/training/) | `pip install --upgrade-strategy eager optimum[habana]` | | [FuriosaAI](https://www.furiosa.ai/) | `pip install --upgrade-strategy eager optimum[furiosa]` | diff --git a/docs/source/installation.mdx b/docs/source/installation.mdx index d8a41d973f..c4dd07462d 100644 --- a/docs/source/installation.mdx +++ b/docs/source/installation.mdx @@ -25,7 +25,7 @@ If you'd like to use the accelerator-specific features of 🤗 Optimum, you can | [ONNX runtime](https://onnxruntime.ai/docs/) | `pip install --upgrade-strategy eager install optimum[onnxruntime]`| | [Intel Neural Compressor (INC)](https://www.intel.com/content/www/us/en/developer/tools/oneapi/neural-compressor.html) | `pip install --upgrade-strategy eager optimum[neural-compressor]` | | [Intel OpenVINO](https://docs.openvino.ai/latest/index.html) | `pip install --upgrade-strategy eager optimum[openvino,nncf]` | -| [AMD Instinct GPUs](https://www.amd.com/en/graphics/instinct-server-accelerators) | Available soon | +| [AMD Instinct GPUs](https://www.amd.com/en/graphics/instinct-server-accelerators) | `pip install --upgrade-strategy eager optimum[amd]` | | [Habana Gaudi Processor (HPU)](https://habana.ai/training/) | `pip install --upgrade-strategy eager optimum[habana]` | | [FuriosaAI](https://www.furiosa.ai/) | `pip install --upgrade-strategy eager optimum[furiosa]` | From 82db364d56b352eef7b5e19cd0175c1a77fbd10e Mon Sep 17 00:00:00 2001 From: Ella Charlaix Date: Fri, 1 Dec 2023 10:17:55 +0100 Subject: [PATCH 2/5] add link --- docs/source/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/index.mdx b/docs/source/index.mdx index 0c9a9c87f1..c876a7541d 100644 --- a/docs/source/index.mdx +++ b/docs/source/index.mdx @@ -33,7 +33,7 @@ As such, Optimum enables developers to efficiently use any of these platforms wi >
AWS Trainium/Inferentia

Accelerate your training and inference workflows with AWS Trainium and AWS Inferentia

-
AMD Instinct GPUs

Available soon AMD Instinct GPUs

From c2f487b318367de7f1bd391ff7aab04b9782a9a6 Mon Sep 17 00:00:00 2001 From: Ella Charlaix Date: Fri, 1 Dec 2023 10:42:11 +0100 Subject: [PATCH 3/5] add links --- docs/source/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/index.mdx b/docs/source/index.mdx index c876a7541d..d3c7399a4c 100644 --- a/docs/source/index.mdx +++ b/docs/source/index.mdx @@ -34,8 +34,8 @@ As such, Optimum enables developers to efficiently use any of these platforms wi

Accelerate your training and inference workflows with AWS Trainium and AWS Inferentia

AMD Instinct GPUs
-

Available soon AMD Instinct GPUs

+ >
AMD
+

Enable performance optimizations for AMD Instinct GPUs and AMD Ryzen AI IPUs

FuriosaAI
From a03895b875c1b2071cfc62cb5f6893cad4a7d7be Mon Sep 17 00:00:00 2001 From: fxmarty <9808326+fxmarty@users.noreply.github.com> Date: Mon, 4 Dec 2023 21:55:15 +0900 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7fb449ccaf..d18cc04101 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ If you'd like to use the accelerator-specific features of 🤗 Optimum, you can | [ONNX Runtime](https://onnxruntime.ai/docs/) | `pip install --upgrade-strategy eager optimum[onnxruntime]` | | [Intel Neural Compressor](https://www.intel.com/content/www/us/en/developer/tools/oneapi/neural-compressor.html) | `pip install --upgrade-strategy eager optimum[neural-compressor]`| | [OpenVINO](https://docs.openvino.ai/latest/index.html) | `pip install --upgrade-strategy eager optimum[openvino,nncf]` | -| [AMD Instinct GPUs](https://www.amd.com/en/graphics/instinct-server-accelerators) | `pip install --upgrade-strategy eager optimum[amd]` | +| [AMD Instinct GPUs and Ryzen AI NPU](https://www.amd.com/en/graphics/instinct-server-accelerators) | `pip install --upgrade-strategy eager optimum[amd]` | | [Habana Gaudi Processor (HPU)](https://habana.ai/training/) | `pip install --upgrade-strategy eager optimum[habana]` | | [FuriosaAI](https://www.furiosa.ai/) | `pip install --upgrade-strategy eager optimum[furiosa]` | From ce0a1d04c4edee941979d1e5f421c914c57cc298 Mon Sep 17 00:00:00 2001 From: fxmarty <9808326+fxmarty@users.noreply.github.com> Date: Mon, 4 Dec 2023 21:57:07 +0900 Subject: [PATCH 5/5] Update docs/source/installation.mdx --- docs/source/installation.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/installation.mdx b/docs/source/installation.mdx index c4dd07462d..cf84d429ea 100644 --- a/docs/source/installation.mdx +++ b/docs/source/installation.mdx @@ -25,7 +25,7 @@ If you'd like to use the accelerator-specific features of 🤗 Optimum, you can | [ONNX runtime](https://onnxruntime.ai/docs/) | `pip install --upgrade-strategy eager install optimum[onnxruntime]`| | [Intel Neural Compressor (INC)](https://www.intel.com/content/www/us/en/developer/tools/oneapi/neural-compressor.html) | `pip install --upgrade-strategy eager optimum[neural-compressor]` | | [Intel OpenVINO](https://docs.openvino.ai/latest/index.html) | `pip install --upgrade-strategy eager optimum[openvino,nncf]` | -| [AMD Instinct GPUs](https://www.amd.com/en/graphics/instinct-server-accelerators) | `pip install --upgrade-strategy eager optimum[amd]` | +| [AMD Instinct GPUs and Ryzen AI NPU](https://www.amd.com/en/graphics/instinct-server-accelerators) | `pip install --upgrade-strategy eager optimum[amd]` | | [Habana Gaudi Processor (HPU)](https://habana.ai/training/) | `pip install --upgrade-strategy eager optimum[habana]` | | [FuriosaAI](https://www.furiosa.ai/) | `pip install --upgrade-strategy eager optimum[furiosa]` |