Update cuda_malloc.py

This commit is contained in:
patientx 2024-08-16 00:55:30 +03:00 committed by GitHub
parent 7bd86b0896
commit 66720813ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,8 @@ def cuda_malloc_supported():
for b in blacklist:
if b in x:
return False
return True
return False
#We don't need malloc at all with amd gpu's. So disabling all together.
if not args.cuda_malloc: