
* set ggml url to FSSRepo/ggml * ggml-alloc integration * offload all functions to gpu * gguf format + native converter * merge custom vae to a model * full offload to gpu * improve pretty progress --------- Co-authored-by: leejet <leejet714@gmail.com>
6 lines
198 B
CMake
6 lines
198 B
CMake
set(TARGET convert)
|
|
|
|
add_executable(${TARGET} convert.cpp vocab.hpp)
|
|
target_link_libraries(${TARGET} PRIVATE ggml zip ${CMAKE_THREAD_LIBS_INIT})
|
|
target_compile_features(${TARGET} PUBLIC cxx_std_11)
|