mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 22:55:46 +01:00
Adding note CUDA / GPU support for Windows (#810)
This commit is contained in:
parent
2e7dbab958
commit
98947602e4
1 changed files with 13 additions and 1 deletions
|
|
@ -88,4 +88,16 @@ cp .\dll_backup\whisper.dll .\buzz\
|
|||
$whlFile = Get-ChildItem .\dist\buzz*.whl | Select-Object -First 1
|
||||
pip install $whlFile
|
||||
```
|
||||
13. Run Buzz `python -m buzz`
|
||||
13. Run Buzz `python -m buzz`
|
||||
|
||||
#### GPU Support
|
||||
|
||||
To enable GPU support first ensure CUDA 12.1 is installed - https://developer.nvidia.com/cuda-12-1-0-download-archive
|
||||
|
||||
Switch torch library to GPU version
|
||||
```
|
||||
pip3 unstall torch torchaudio
|
||||
pip3 install torch==2.2.1+cu121 torchaudio==2.2.1+cu121 --index-url https://download.pytorch.org/whl/cu121
|
||||
```
|
||||
|
||||
Run Buzz `python -m buzz`
|
||||
Loading…
Add table
Add a link
Reference in a new issue