Rek-Malorm
commited on
Commit
·
ae8a181
1
Parent(s):
77d6f5a
Provide instructions for AMD GPU
Browse files
README.md
CHANGED
@@ -25,11 +25,22 @@
|
|
25 |
# Create a python 3.10 conda env (you could also use virtualenv)
|
26 |
conda create -n f5-tts python=3.10
|
27 |
conda activate f5-tts
|
|
|
|
|
|
|
28 |
|
|
|
29 |
# Install pytorch with your CUDA version, e.g.
|
30 |
pip install torch==2.3.0+cu118 torchaudio==2.3.0+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
|
31 |
```
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
Then you can choose from a few options below:
|
34 |
|
35 |
### 1. As a pip package (if just for inference)
|
|
|
25 |
# Create a python 3.10 conda env (you could also use virtualenv)
|
26 |
conda create -n f5-tts python=3.10
|
27 |
conda activate f5-tts
|
28 |
+
```
|
29 |
+
|
30 |
+
### Nvidia GPU
|
31 |
|
32 |
+
```bash
|
33 |
# Install pytorch with your CUDA version, e.g.
|
34 |
pip install torch==2.3.0+cu118 torchaudio==2.3.0+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
|
35 |
```
|
36 |
|
37 |
+
### AMD GPU
|
38 |
+
|
39 |
+
```bash
|
40 |
+
# Install pytorch with your ROCm version, e.g.
|
41 |
+
pip install torch==2.5.1+rocm6.2 torchaudio==2.5.1+rocm6.2 --extra-index-url https://download.pytorch.org/whl/rocm6.2
|
42 |
+
```
|
43 |
+
|
44 |
Then you can choose from a few options below:
|
45 |
|
46 |
### 1. As a pip package (if just for inference)
|