Skip to content

Commit 7576382

Browse files
mgoinjimpang
authored andcommitted
[CI][BugFix] Flip is_quant_method_supported condition (vllm-project#5577)
1 parent 4a664bf commit 7576382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/quantization/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ def is_quant_method_supported(quant_method: str) -> bool:
1010

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

0 commit comments

Comments
 (0)