Bump llama.cpp to dec5ca5 (b9763), release v0.8.28#60
Merged
Conversation
Update vendor/llama.cpp submodule from 845282461 to dec5ca557 (24 commits, tag b9763) and cut release v0.8.28. No NIF changes required: the only binding-relevant header touched is include/llama.h, which adds an unused llama_model_n_layer_nextn accessor (rest is whitespace realignment). The grammar generators behind the binding's json_schema_to_grammar_nif were refactored upstream (common/peg AC parser, json-schema-to-grammar spacing), so the JSON-schema and raw-GBNF smoke paths were 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.
Summary
Updates the
vendor/llama.cppsubmodule from845282461todec5ca557(24 commits, tag b9763) and cuts release v0.8.28.No NIF changes required. The only binding-relevant header touched is
include/llama.h, and its sole functional change is one new accessor —llama_model_n_layer_nextn— added next tollama_model_n_layer; the rest of the diff is whitespace realignment. The binding does not call the new function. All other headers the binding compiles against (ggml.h,ggml-backend.h,chat.h,json-schema-to-grammar.h,sampling.h,speculative.h,common.h) are unchanged.This range refactors the grammar generators behind the binding's
json_schema_to_grammar_nif(common/pegAC parser #24869, until→GBNF refactor #24839, json-schema-to-grammar spacing #24835) eventhough the header is unchanged — so both the JSON-schema and raw-GBNF smoke paths were re-verified.
See
CHANGELOG.mdfor the full categorized commit breakdown.Verification
Llama-3.2-3B-Instruct), and embeddings (Qwen3-Embedding-0.6B)mix format --check-formattedcleanNIF rebuilt from source against the new submodule (
LLAMA_BACKEND=auto, Metal).You can also click the link GitHub printed on push: https://github.com/nyo16/llama_cpp_ex/pull/new/bump-llama-cpp-dec5ca5
Summary of what's done: