From 4728e2aa17b2d72ad805f7ea9ee08ea1b3e481f4 Mon Sep 17 00:00:00 2001 From: Giovanni La Mura Date: Thu, 19 Dec 2024 10:55:45 +0100 Subject: [PATCH] Fix bug in cuBLAS disabling configure option --- build/configure.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/configure.sh b/build/configure.sh index 5acd3c27..0b06c581 100755 --- a/build/configure.sh +++ b/build/configure.sh @@ -576,8 +576,7 @@ if [ "x$LAPACK" != "xno" ]; then fi # End of LAPACK checks # cuBLAS checks -if [ "xCUBLAS" != "xno" ]; then - echo -n "configure: checking for cuBLAS... " +if [ "x$CUBLAS" != "xno" ]; then pkg-config --version > /dev/null use_pkg_config=$? if [ "x${CUDAFLAGS}${CUDALDFLAGS}" = "x" ]; then -- GitLab