Skip to content

Commit

Permalink
[CI][BugFix] Flip is_quant_method_supported condition (vllm-project#5577
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mgoin authored Jun 16, 2024
1 parent f31c1f9 commit 4a67690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/quantization/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ def is_quant_method_supported(quant_method: str) -> bool:

capability = torch.cuda.get_device_capability()
capability = capability[0] * 10 + capability[1]
return (capability <
return (capability >=
QUANTIZATION_METHODS[quant_method].get_min_capability())

0 comments on commit 4a67690

Please sign in to comment.