Skip to content

Commit

Permalink
fix merge error (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
wenhuach21 authored Nov 15, 2024
1 parent d493572 commit dadb95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto_round/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def get_autogptq_infer_linear(backend, bits=4, group_size=128, sym=False):
from packaging.version import Version

# Import the appropriate QuantLinear based on the version of auto_gptq
if Version(version) <= Version("0.7.1"):
if Version(version) < Version("0.7.2"):
QuantLinear = dynamically_import_QuantLinear(
use_triton=use_triton,
desc_act=False,
Expand Down

0 comments on commit dadb95a

Please sign in to comment.