Change return value to False in cuda_malloc.py

This commit is contained in:
patientx 2025-12-22 02:29:22 +03:00 committed by GitHub
parent 0e13ba3678
commit 6b08be7725
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,7 @@ def cuda_malloc_supported():
for b in blacklist:
if b in x:
return False
return True
return False
version = ""