Bump llama.cpp to b3ce5ce (b9789), release v0.8.29#61
Merged
Conversation
Update vendor/llama.cpp submodule from dec5ca557 to b3ce5cedf (26 commits,
tag b9789) and cut release v0.8.29.
No NIF changes required. include/llama.h, the ggml headers, and
common/{json-schema-to-grammar,sampling,speculative}.h are all unchanged.
The two binding-compiled headers that did change touch only server-side
code: common/common.h bumps a server default (checkpoint_min_step), and
common/chat.h reworks the chat message-splitting API (role enum, new
*_spans/*_delimiters containers, message_spans -> message_delimiters) used
by the server, not the binding. The NIF only calls common_chat_templates_*
and common_chat_msg; the underlying common/chat.cpp was refactored as part
of that work, so the chat-template smoke path was re-verified.
Verification: full suite 158 passed / 4 skipped, all 7 smoke tests pass
(generation, streaming, chat, JSON-schema grammar, raw GBNF, embeddings),
mix format clean, Dialyzer 0 errors.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update
vendor/llama.cppsubmodule fromdec5ca557tob3ce5cedf(26 commits, tag b9789) and cut release v0.8.29.NIF changes
None.
include/llama.h, the ggml headers, andcommon/{json-schema-to-grammar,sampling,speculative}.hare all unchanged. The two binding-compiled headers that did change touch only server-side code:common/common.h— bumps a server default (checkpoint_min_step256 → 8192).common/chat.h— reworks the chat message-splitting API (common_chat_msg_span.rolebecomes acommon_chat_roleenum; newcommon_chat_msg_spans/common_chat_msg_delimiterscontainers replacethe free-standing
common_chat_split_by_role;common_chat_params.message_spans→message_delimiters). All consumed by the server, not the binding.The NIF only calls
common_chat_templates_inputs,common_chat_msg, andcommon_chat_templates_apply. The implementation behind that last call (common/chat.cpp) was refactored as part of the samework, so the chat-template smoke path was re-exercised against the freshly built NIF.
Notable upstream changes
Full list in
CHANGELOG.md.Verification
--include smoke): 7 passed — generation, streaming, chat templates, JSON-schema grammar, raw GBNF, embeddings (Qwen3-Embedding model)mix format --check-formatted: cleanmix dialyzer: 0 errorschecksum.exsintentionally untouched — CI regenerates it from the release artifacts after the tag is pushed.