2023-09-11 17:26:41 +00:00
|
|
|
import ctypes
|
|
|
|
|
2023-09-11 17:33:43 +00:00
|
|
|
|
2023-09-11 17:31:47 +00:00
|
|
|
def is_libcublas_available() -> bool:
|
2023-09-11 17:26:41 +00:00
|
|
|
try:
|
|
|
|
ctypes.CDLL("libcublas.so")
|
|
|
|
return True
|
|
|
|
except OSError:
|
2023-09-11 17:33:43 +00:00
|
|
|
return False
|