ggerganov / llama.cpp

LLM inference in C/C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CMakeLists bug in BLAS

hpcpony opened this issue · comments

Still not a cmake expert but in CMakeLists.txt shouldn't :

if ($(CMAKE_VERSION) VERSION_GREATER_EQUAL 3.22)

be

if (${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.22)

At least for me, it doesn't otherwise set the length properly.