From 9cfcd6cc45196b27286cc6694dcfca67a07ccf4d Mon Sep 17 00:00:00 2001 From: Jeff Klassen Date: Fri, 11 Apr 2025 00:54:51 -0600 Subject: [PATCH] docs : update README.md to note newer nvidia gpus (#3031) Resolves: https://github.com/ggml-org/whisper.cpp/issues/3030 --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 565e195a..f51b88de 100644 --- a/README.md +++ b/README.md @@ -322,6 +322,12 @@ cmake -B build -DGGML_CUDA=1 cmake --build build -j --config Release ``` +or for newer NVIDIA GPU's (RTX 5000 series): +``` +cmake -B build -DGGML_CUDA=1 -DCMAKE_CUDA_ARCHITECTURES="86" +cmake --build build -j --config Release +``` + ## Vulkan GPU support Cross-vendor solution which allows you to accelerate workload on your GPU. First, make sure your graphics card driver provides support for Vulkan API.