test_weights: add modules_to_not_convert

This commit is contained in:
Daniël de Kok 2025-03-06 16:44:10 +00:00
parent cae0cbe87d
commit ed5bfe4241

View File

@ -25,6 +25,7 @@ def gptq_weights_loader():
quant_method="gptq",
quantize="gptq",
sym=True,
modules_to_not_convert=[],
)
@ -37,6 +38,7 @@ def gptq_weights_loader_awq():
quant_method="awq",
quantize="awq",
sym=True,
modules_to_not_convert=[],
)