feat(gf16): validation workflow — roundtrip + size check (5 seeds)#552
Merged
Conversation
- Encode/decode GF16 for 1.95M weights across 5 seeds - Max roundtrip error + average error per seed - Model size check: GF16 < 16 MB - 4 unit tests: zero, positive, negative, size limit - Exit 1 on validation failure Closes #531
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
GF16 quantization validation workflow per #531 acceptance criteria.
What it does
Files
tests/gf16_roundtrip.zig— Self-contained GF16 encode/decode + validationTests
gf16 roundtrip zero— zero stays zerogf16 roundtrip positive— 6 positive values within 1% errorgf16 roundtrip negative— 4 negative values within 1% errorgf16 model size under 16MB— 3.9 MB < 16 MB limitUsage
zig test tests/gf16_roundtrip.zig zig run tests/gf16_roundtrip.zigCloses #531