Skip to content
This repository was archived by the owner on Mar 12, 2021. It is now read-only.

Commit ecc09c9

Browse files
authored
Merge pull request #31 from Keno/patch-1
Also look in the lib64 directory for libcublas
2 parents bda4cb9 + 2bab7ab commit ecc09c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CUBLAS.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function statuscheck(status)
7272
end
7373

7474
# find the cublas library
75-
const libcublas = Libdl.find_library(["libcublas"], ["/usr/local/cuda"])
75+
const libcublas = Libdl.find_library(["libcublas"], ["/usr/local/cuda","/usr/local/cuda/lib64/"])
7676
if isempty(libcublas)
7777
error("CUBLAS library cannot be found. Please make sure that CUDA is installed")
7878
end

0 commit comments

Comments
 (0)