Spaces:
Running
Running
Jeff Klassen
commited on
docs : update README.md to note newer nvidia gpus (#3031)
Browse filesResolves: https://github.com/ggml-org/whisper.cpp/issues/3030
README.md
CHANGED
|
@@ -322,6 +322,12 @@ cmake -B build -DGGML_CUDA=1
|
|
| 322 |
cmake --build build -j --config Release
|
| 323 |
```
|
| 324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 325 |
## Vulkan GPU support
|
| 326 |
Cross-vendor solution which allows you to accelerate workload on your GPU.
|
| 327 |
First, make sure your graphics card driver provides support for Vulkan API.
|
|
|
|
| 322 |
cmake --build build -j --config Release
|
| 323 |
```
|
| 324 |
|
| 325 |
+
or for newer NVIDIA GPU's (RTX 5000 series):
|
| 326 |
+
```
|
| 327 |
+
cmake -B build -DGGML_CUDA=1 -DCMAKE_CUDA_ARCHITECTURES="86"
|
| 328 |
+
cmake --build build -j --config Release
|
| 329 |
+
```
|
| 330 |
+
|
| 331 |
## Vulkan GPU support
|
| 332 |
Cross-vendor solution which allows you to accelerate workload on your GPU.
|
| 333 |
First, make sure your graphics card driver provides support for Vulkan API.
|