-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add additional checks for cuda library
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import ctypes | ||
|
||
def is_libnvrtc_available(): | ||
try: | ||
ctypes.CDLL("libnvrtc.so") | ||
return True | ||
except OSError: | ||
return False | ||
|
||
def is_libcuda_available(): | ||
try: | ||
ctypes.CDLL("libcuda.so") | ||
return True | ||
except OSError: | ||
return False | ||
|
||
def is_cuda_available(): | ||
if is_libcuda_available() and is_libnvrtc_available(): | ||
pass | ||
else: | ||
raise ImportError("libcuda.so or libnvrtc.so is not available. Please check your CUDA installation!") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters