sync: open-core source for 0.2.4 - #62
Merged
Merged
Conversation
Generated by tools/sync_public.py from the internal tree at b5e86372. Only allow-listed paths are included; tuned quant profiles and internal tooling are excluded by rule.
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.
Automated source sync from the engine tree, generated by
tools/sync_public.py. Opened by hand because the sync workflow's token cannot create pull requests.63 files — 5 new, 58 changed.
What's new
Three model families land in the converter, so this repo can build bundles for them:
base-arch/src/gpt_oss.rsandbase-convert/src/gpt_oss.rs. MXFP4 expert stacks are transplanted verbatim rather than requantized.base-arch/src/nemotron.rs. Mamba-2 hybrid.base-arch/src/glm.rs. Multi-head latent attention.Plus
base-hub/src/parts.rsfor multi-part bundle reassembly, the public headers, the language bindings, and a rustfmt pass over the workspace.Header change worth noting
BaseRTModelConfigchanged layout — the new families added fields beside the ones they relate to rather than at the end, so offsets moved and the struct grew. Anything built against 0.2.3 that reads it needs recompiling.baseRT_model_config_sizeof()reports the library's own size and the bindings compare it at load, so a mismatched pairing fails loudly rather than misreading fields.Verification
Checked against a fresh clone of this repo before opening:
cargo build --release --bin basertclean.default-*andwhisper-*are published.The build check in particular is now enforced by the sync workflow itself. An earlier run of this sync pushed a tree that did not compile — it dropped every newly added file, so
base-arch/src/lib.rsdeclared three modules whose files were missing. That branch (sync/source-0.2.4-63abd3f6) is incomplete and should be deleted rather than merged; this one supersedes it.