-
Notifications
You must be signed in to change notification settings - Fork 43
support to export static afp8 model #662
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
Open
n1ck-guo
wants to merge
7
commits into
main
Choose a base branch
from
hengguo/export_static_fp8
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
Signed-off-by: n1ck-guo <heng.guo@intel.com>
yiliu30
requested changes
Jul 16, 2025
wenhuach21
reviewed
Jul 16, 2025
wenhuach21
reviewed
Jul 16, 2025
wenhuach21
reviewed
Jul 16, 2025
auto_round/script/llm.py
Outdated
@@ -486,15 +486,30 @@ def tune(args): | |||
model_name = args.model.rstrip("/") | |||
|
|||
if model_name.split('/')[-1].strip('.') == "" and "gguf" not in args.format: | |||
export_dir = os.path.join(args.output_dir, f"w{autoround.bits}g{autoround.group_size}") | |||
if autoround.group_size == -1: |
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.
we support group_size=0 as per_tensor now. Please check the config or support this config
wenhuach21
reviewed
Jul 16, 2025
wenhuach21
reviewed
Jul 16, 2025
wenhuach21
reviewed
Jul 16, 2025
wenhuach21
reviewed
Jul 16, 2025
wenhuach21
reviewed
Jul 16, 2025
Signed-off-by: n1ck-guo <heng.guo@intel.com>
you also need to handle zeros in activation during calibration, raise error or do some tricky op like using unit scale. |
…auto-round into hengguo/export_static_fp8
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.
example command:
python -m auto_round --format "auto_round" --bits 8 --act_bits 8 --group_size -1 --iters 0 --nsample 2 --seqlen 1024 --model /models/opt-125m/ --data_type fp8 --act_data_type "fp8" --disable_act_dynamic