Skip to content

Commit

Permalink
Fixed the HQQ import skip (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
yiliu30 authored May 21, 2024
1 parent 3c9bc20 commit 5e28109
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions test/hqq/test_triton_mm.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@
"triton", minversion="3.0.0", reason="Triton > 3.0.0 required to run this test"
)
hqq = pytest.importorskip("hqq", reason="hqq required to run this test")
HQQLinear = pytest.importorskip(
"hqq.core.quantize.HQQLinear", reason="HQQLinear required to run this test"
)
BaseQuantizeConfig = pytest.importorskip(
"hqq.core.quantize.BaseQuantizeConfig", reason="HQQLinear required to run this test"
)
hqq_quantize = pytest.importorskip("hqq.core.quantize", reason="hqq required to run this test")
HQQLinear = hqq_quantize.HQQLinear
BaseQuantizeConfig = hqq_quantize.BaseQuantizeConfig

import itertools

Expand Down

0 comments on commit 5e28109

Please sign in to comment.