-
Notifications
You must be signed in to change notification settings - Fork 358
GPTQ official #853
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
GPTQ official #853
Changes from all commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
878dba9
add rabbit feedback
Fridah-nv 9545e2f
minor
Fridah-nv 7d56d64
tested perplexity
sugunav14 da41e3f
tested, revert later
sugunav14 f98154c
tested
sugunav14 1120b74
refactor
sugunav14 a16fcae
Track global_amax for weight FP4 MSE sweep; Refactor to NVFP4StaticQa…
realAsma 2771a9d
address reviewers feedback, delegate scaling factor calculation to NV…
Fridah-nv e73dc52
tested perplexity
sugunav14 da757d4
tested exported checkpoints on 0211
sugunav14 2fdcd22
tested nano v3
sugunav14 49aa3d3
added activation MSE logging
sugunav14 1cf4b1a
super v3 run
sugunav14 f9b1487
added activationmse logging helper
sugunav14 b62f381
input amax sync added + tested gptq super sft checkpoint
sugunav14 636c88a
checkpoints generated on 0223
sugunav14 88c9908
tested perplexity
sugunav14 7ebd5ef
tested, revert later
sugunav14 26ac174
tested
sugunav14 868c7d6
initial cleanup
sugunav14 6f8870d
cleanup
sugunav14 91f3d2d
removed stray prints
sugunav14 cb46d7e
fix rebase issues
sugunav14 0bde840
minor
sugunav14 6c478a7
tested e2e on qwen
sugunav14 539d3bf
removed perplexity eval
sugunav14 f38a5cc
update
sugunav14 e4f7534
revert later
sugunav14 7177246
minor update
sugunav14 ccee659
update
sugunav14 3a5d235
gptq faster
sugunav14 d4c8a11
added metrics files, remove later
sugunav14 2129511
claude review
sugunav14 364cc54
remove stray files
sugunav14 2574475
refactor
sugunav14 0c6ec11
claude review + coderabbit review
sugunav14 e2eb25a
refactor
sugunav14 472ec34
stray changes removed
sugunav14 b1dcdfc
Address PR comments
sugunav14 a95bb77
fixed circular import issue
sugunav14 b64b7d3
refactor for MIT license
sugunav14 7de3cc0
PR review addressed
sugunav14 748b6bf
moved promote_nvfp4_static_quantizers to utils
sugunav14 06ec8b0
fixed unit tests
sugunav14 8feb42f
updated precision to bfloat16
sugunav14 446c8a7
Revert "updated precision to bfloat16"
sugunav14 1394a33
rebase fixes
sugunav14 f080214
minor rename
sugunav14 d64df14
fixed circular import
sugunav14 3e75415
fixed circular import
sugunav14 e734cee
minor fix
sugunav14 4073789
rebase fix
sugunav14 f43dc7a
Merge branch 'main' into svelury/gptq-official
sugunav14 5c7a024
Merge branch 'main' into svelury/gptq-official
sugunav14 bea8ec1
Merge branch 'main' into svelury/gptq-official
sugunav14 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should
use_sequentialbe part of theGPTQConfig?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, I think sequential calibration can be a general feature which can be used for other calibration algorithms in the future. @realAsma what do you think?