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
Copy file name to clipboardExpand all lines: README.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,16 +63,24 @@ Download and install the PortAudio library from [here](https://files.portaudio.c
63
63
# On Windows, use '.venv\Scripts\activate'
64
64
```
65
65
66
-
3. Install the dependencies:
67
-
68
-
```bash
69
-
pip install -r requirements.txt
70
-
```
66
+
3. Install the package:
71
67
72
68
```bash
73
69
pip install .
74
70
```
75
71
72
+
### Optional GPU Acceleration
73
+
74
+
If your system has a compatible Nvidia or AMD GPU, you can enable GPU acceleration by installing an additional dependency:
75
+
76
+
```bash
77
+
pip install .[gpu]
78
+
```
79
+
80
+
**Note**: GPU acceleration is not recommended if your system supports AMX or uses an Apple M-series chip, as native operations may be more efficient.
81
+
82
+
Then follow these [instructions](https://docs.cupy.dev/en/stable/install.html#using-cupy-on-amd-gpu-experimental) to install the CUDA--for Nvidia--or ROCm--for AMD--toolkit.
0 commit comments