CoolFace
Modelpublic

Felipe97/llama-cpp-compiled

sourceHugging Faceupdated 4d agoView on Hugging Face
0likes1.1kdownloads
arm64-windows-llvm.cmake18 linesDownload Raw Back to cmake
1set( CMAKE_SYSTEM_NAME Windows )2set( CMAKE_SYSTEM_PROCESSOR arm64 )3 4set( target arm64-pc-windows-msvc )5 6set( CMAKE_C_COMPILER    clang )7set( CMAKE_CXX_COMPILER  clang++ )8 9set( CMAKE_C_COMPILER_TARGET   ${target} )10set( CMAKE_CXX_COMPILER_TARGET ${target} )11set( CMAKE_ASM_COMPILER_TARGET ${target} )12 13set( arch_c_flags "-march=armv8.7-a -fvectorize -ffp-model=fast -fno-finite-math-only" )14set( warn_c_flags "-Wno-format -Wno-unused-variable -Wno-unused-function -Wno-gnu-zero-variadic-macro-arguments" )15 16set( CMAKE_C_FLAGS_INIT   "${arch_c_flags} ${warn_c_flags}" )17set( CMAKE_CXX_FLAGS_INIT "${arch_c_flags} ${warn_c_flags}" )18