From 7861e2bd859fa629384e476503ab4535ef8bf003 Mon Sep 17 00:00:00 2001 From: Raivis Dejus Date: Sun, 16 Feb 2025 20:21:11 +0200 Subject: [PATCH] Will enable GPU for windows for recording transcriber (#1083) --- buzz/transcriber/recording_transcriber.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/buzz/transcriber/recording_transcriber.py b/buzz/transcriber/recording_transcriber.py index c9fba33a..fc1c75bc 100644 --- a/buzz/transcriber/recording_transcriber.py +++ b/buzz/transcriber/recording_transcriber.py @@ -87,10 +87,6 @@ class RecordingTranscriber(QObject): model_root_dir = os.getenv("BUZZ_MODEL_ROOT", model_root_dir) device = "auto" - if platform.system() == "Windows": - logging.debug("CUDA GPUs are currently no supported on Running on Windows, using CPU") - device = "cpu" - if torch.cuda.is_available() and torch.version.cuda < "12": logging.debug("Unsupported CUDA version (<12), using CPU") device = "cpu"