mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
8 lines
158 B
Python
8 lines
158 B
Python
import ctypes
|
|
|
|
def is_libcublas_available() -> bool:
|
|
try:
|
|
ctypes.CDLL("libcublas.so")
|
|
return True
|
|
except OSError:
|
|
return False |