generate_darwin_amd64.go 734 B

12345678910
  1. package llm
  2. //go:generate git submodule init
  3. //go:generate git submodule update --force ggml
  4. //go:generate git -C ggml apply ../ggml_patch/0001-add-detokenize-endpoint.patch
  5. //go:generate git -C ggml apply ../ggml_patch/0002-34B-model-support.patch
  6. //go:generate git -C ggml apply ../ggml_patch/0003-metal-fix-synchronization-in-new-matrix-multiplicati.patch
  7. //go:generate git -C ggml apply ../ggml_patch/0004-metal-add-missing-barriers-for-mul-mat-2699.patch
  8. //go:generate cmake --fresh -S ggml -B ggml/build/cpu -DLLAMA_ACCELERATE=on -DLLAMA_K_QUANTS=on -DCMAKE_SYSTEM_PROCESSOR=x86_64 -DCMAKE_OSX_ARCHITECTURES=x86_64 -DCMAKE_OSX_DEPLOYMENT_TARGET=10.11
  9. //go:generate cmake --build ggml/build/cpu --target server --config Release