Skip to content

Commit 54e7384

Browse files
committed
Fix precommit
Signed-off-by: sstamenk <strahinja.stamenkovic@amd.com>
1 parent 6230a5d commit 54e7384

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/models/quantization/test_bitsandbytes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
pytestmark = pytest.mark.skipif(
2121
on_gfx9(),
22-
reason="bitsandbytes quantization not supported on gfx9 (warp size 64 limitation)",
22+
reason="bitsandbytes quantization not supported on gfx9 (warp size 64)",
2323
)
2424

2525
models_4bit_to_test = [

vllm/platforms/rocm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class RocmPlatform(Platform):
185185
"petit_nvfp4",
186186
"torchao",
187187
]
188-
# bitsandbytes quantization not supported on gfx9 (warp size 64 limitation)
188+
# bitsandbytes not supported on gfx9 (warp size 64 limitation)
189189
if not on_gfx9():
190190
supported_quantization += ["bitsandbytes"]
191191

0 commit comments

Comments
 (0)