langchain/libs/experimental/tests/unit_tests/__init__.py

10 lines
160 B
Python
Raw Normal View History

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