[Performance] Memoryless observers for weights#2196
Conversation
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com>
|
👋 Hi! Thank you for contributing to llm-compressor. Please add the ready label when the PR is ready for review. Note: This is required to complete the testing suite, please only add the label once the PR is code complete and local testing has been performed. |
Summary of ChangesHello @kylesayrs, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request refines the quantization calibration mechanism by mandating the use of memoryless observers for weights. This adjustment is a direct consequence of discontinued training support for certain observer types, ensuring that the system consistently employs appropriate observers for inference. The update includes a modification to the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates the initialize_observer function to enforce the use of memoryless observers for weights by replacing stateful observers like minmax and mse with their memoryless versions. This aligns with the goal of discontinuing support for training-time observer calibration for weights. My review includes a suggestion to improve the accuracy of the docstring and another to refactor the conditional logic for better readability and maintainability.
|
Do we want to change the presets in CT as well? Seems strange to me that we have logic in presets, in QuantizationArgs validation, and here in LC as well |
|
@brian-dellabetta Yeah I agree, I'll change the presets too. I think this PR should still land though, since it also safeguards against users accidentally using a moving-average observer for weights, when in reality it won't do anything except use extra memory. |
|
vllm-project/compressed-tensors#540 @brian-dellabetta There's no need to wait for this, we can land these changes now |
|
@kylesayrs are we concerned around algorithms beyond the QuantModifier requiring a non-memoryless observer for weights? E.g Does the AutoRound modifier need to track values over time for weight updates? |
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com>
|
@dsikka Autoround does not use LC observers, as evidenced by how |
Purpose
Changes
memoryless_minmaxandmemoryless_msewhen performing weight quantizationTesting