You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#For Windows + Nvidia Ampere Architecture(RTX30xx), you need to specify the cuda version corresponding to pytorch according to the experience of https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/issues/21
Then can use poetry to install the other dependencies:
@@ -75,12 +78,14 @@ You can also use pip to install them:
75
78
for Nvidia graphics cards
76
79
pip install -r requirements.txt
77
80
78
-
for AMD/Intel graphics cards:
81
+
for AMD/Intel graphics cards on Windows (DirectML):
79
82
pip install -r requirements-dml.txt
80
83
81
84
for Intel ARC graphics cards on Linux / WSL using Python 3.10:
82
85
pip install -r requirements-ipex.txt
83
86
87
+
for AMD graphics cards on Linux (ROCm):
88
+
pip install -r requirements-amd.txt
84
89
```
85
90
86
91
------
@@ -135,8 +140,32 @@ Then use this command to start Webui:
135
140
```bash
136
141
python infer-web.py
137
142
```
143
+
138
144
If you are using Windows or macOS, you can download and extract `RVC-beta.7z` to use RVC directly by using `go-web.bat` on windows or `sh ./run.sh` on macOS to start Webui.
139
145
146
+
## ROCm Support for AMD graphic cards (Linux only)
147
+
To use ROCm on Linux install all required drivers as described [here](https://rocm.docs.amd.com/en/latest/deploy/linux/os-native/install.html).
148
+
149
+
On Arch use pacman to install the driver:
150
+
````
151
+
pacman -S rocm-hip-sdk rocm-opencl-sdk
152
+
````
153
+
154
+
You might also need to set these environment variables (e.g. on a RX6700XT):
155
+
````
156
+
export ROCM_PATH=/opt/rocm
157
+
export HSA_OVERRIDE_GFX_VERSION=10.3.0
158
+
````
159
+
Also make sure your user is part of the `render` and `video` group:
0 commit comments