2023-08-30 20:35:03 +00:00
|
|
|
package llm
|
|
|
|
|
|
|
|
//go:generate git submodule init
|
2023-09-12 15:04:35 +00:00
|
|
|
|
|
|
|
//go:generate git submodule update --force ggml
|
2023-09-20 19:15:23 +00:00
|
|
|
//go:generate git -C ggml apply ../patches/0001-add-detokenize-endpoint.patch
|
|
|
|
//go:generate git -C ggml apply ../patches/0002-34B-model-support.patch
|
2023-09-12 15:04:35 +00:00
|
|
|
//go:generate cmake -S ggml -B ggml/build/cpu -DLLAMA_K_QUANTS=on
|
2023-08-30 20:35:03 +00:00
|
|
|
//go:generate cmake --build ggml/build/cpu --target server --config Release
|
2023-10-06 14:15:42 +00:00
|
|
|
//go:generate cmd /c move ggml\build\cpu\bin\Release\server.exe ggml\build\cpu\bin\Release\ollama-runner.exe
|
2023-09-12 15:04:35 +00:00
|
|
|
|
|
|
|
//go:generate git submodule update --force gguf
|
2023-10-23 17:41:18 +00:00
|
|
|
//go:generate git -C gguf apply ../patches/0001-update-default-log-target.patch
|
2023-10-27 19:13:44 +00:00
|
|
|
//go:generate cmake -S gguf -B gguf/build/cpu -DLLAMA_K_QUANTS=on -DLLAMA_NATIVE=off -DLLAMA_AVX=on -DLLAMA_AVX2=off -DLLAMA_AVX512=off -DLLAMA_FMA=off -DLLAMA_F16C=off
|
2023-09-07 17:55:37 +00:00
|
|
|
//go:generate cmake --build gguf/build/cpu --target server --config Release
|
2023-10-06 14:15:42 +00:00
|
|
|
//go:generate cmd /c move gguf\build\cpu\bin\Release\server.exe gguf\build\cpu\bin\Release\ollama-runner.exe
|