We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be36bb9 commit eec22a1Copy full SHA for eec22a1
CMakeLists.txt
@@ -230,7 +230,11 @@ if (LLAMA_BLAS)
230
if (${LLAMA_BLAS_VENDOR} MATCHES "Generic")
231
pkg_check_modules(DepBLAS REQUIRED blas)
232
elseif (${LLAMA_BLAS_VENDOR} MATCHES "OpenBLAS")
233
- pkg_check_modules(DepBLAS REQUIRED openblas)
+ # As of openblas v0.3.22, the 64-bit is named openblas64.pc
234
+ pkg_check_modules(DepBLAS openblas64)
235
+ if (NOT DepBLAS_FOUND)
236
+ pkg_check_modules(DepBLAS REQUIRED openblas)
237
+ endif()
238
elseif (${LLAMA_BLAS_VENDOR} MATCHES "FLAME")
239
pkg_check_modules(DepBLAS REQUIRED blis)
240
elseif (${LLAMA_BLAS_VENDOR} MATCHES "ATLAS")
0 commit comments