You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecation warning to assist with migration to new binary names (#8283)
* Adding a simple program to provide a deprecation warning that can exist to help people notice the binary name change from #7809 and migrate to the new filenames.
* Build legacy replacement binaries only if they already exist. Check for their existence every time so that they are not ignored.
# Legacy build targets that were renamed in #7809, but we want to build binaries that for them that output a deprecation warning if people try to use them.
72
+
# We don't want to clutter things too much, so we only build replacements for the most commonly used binaries.
73
+
LEGACY_TARGETS_BUILD = main quantize perplexity embedding server finetune
74
+
71
75
# Deprecation aliases
72
76
ifdefLLAMA_CUBLAS
73
77
$(error LLAMA_CUBLAS is removed. Use GGML_CUDA instead.)
[2024 Jun 12] Binaries have been renamed w/ a `llama-` prefix. `main` is now `llama-cli`, `server` is `llama-server`, etc (https://github.com/ggerganov/llama.cpp/pull/7809)
5
+
6
+
This migration was important, but it is a breaking change that may not always be immediately obvious to users.
7
+
8
+
Please update all scripts and workflows to use the new binary names.
0 commit comments