Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions modelopt/torch/quantization/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ def find_quant_cfg_entry_by_path(
"enable": False,
}, # Skip the MOE router
{"quantizer_name": "*linear_attn.conv1d*", "enable": False},
{"quantizer_name": "*linear_attn.in_proj_a*", "enable": False},
{"quantizer_name": "*linear_attn.in_proj_b*", "enable": False},
{"quantizer_name": "*mixer.conv1d*", "enable": False}, # Skip mamba conv1d
{"quantizer_name": "*output_layer*", "enable": False},
{"quantizer_name": "output.*", "enable": False},
Expand Down
Loading