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
Live checkpoint validation found and fixed a KDA prefill layout bug in c61ef42.
causal_conv1d_varlen returns channel-major contiguous storage. The previous transpose left token-major Q/K/V views with a non-unit feature stride, while the Triton KDA kernel indexes the key/head dimensions as contiguous. Materializing the transposed result restores parity.
Actual GLM-5.3-Flash-NVFP4 layer-0 KDA comparison against the Transformers recurrent reference:
before: cosine 0.0076478, max abs diff 0.0086498
after: cosine 0.9999971, max abs diff 1.53e-05
Regression checks: 7 passed; Ruff and git diff --check clean. A live RTX PRO 6000 WS / FreeToken offload run now produces the exact requested final answer (PARIS) and completed c8/c16 demand tests with zero failures.
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
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.
Adds single-GPU hybrid-offload support for
LibertAIDAI/GLM-5.3-Flash-NVFP4.Highlights:
Live validation:
Checks:
uv run pytest tests/models/test_glm5_next_config.py tests/models/test_nvfp4_banks.py -q(5 passed)