Jeff Klassen commited on
Commit
9401dde
·
unverified ·
1 Parent(s): 6c51a9b

docs : update README.md to note newer nvidia gpus (#3031)

Browse files

Resolves: https://github.com/ggml-org/whisper.cpp/issues/3030

Files changed (1) hide show
  1. README.md +6 -0
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.