From 6b08be7725cda80a8dff51c37e999c2021ccf433 Mon Sep 17 00:00:00 2001 From: patientx Date: Mon, 22 Dec 2025 02:29:22 +0300 Subject: [PATCH] Change return value to False in cuda_malloc.py --- cuda_malloc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuda_malloc.py b/cuda_malloc.py index ee2bc4b69..fbc6e8a8c 100644 --- a/cuda_malloc.py +++ b/cuda_malloc.py @@ -60,7 +60,7 @@ def cuda_malloc_supported(): for b in blacklist: if b in x: return False - return True + return False version = ""