apply_lora_and_quantize / llama.cpp /cmake /x64-windows-llvm.cmake
Steven10429's picture
llama.cpp
61b850a
raw
history blame contribute delete
270 Bytes
set( CMAKE_SYSTEM_NAME Windows )
set( CMAKE_SYSTEM_PROCESSOR x86_64 )
set( CMAKE_C_COMPILER clang )
set( CMAKE_CXX_COMPILER clang++ )
set( arch_c_flags "-march=native" )
set( CMAKE_C_FLAGS_INIT "${arch_c_flags}" )
set( CMAKE_CXX_FLAGS_INIT "${arch_c_flags}" )