Skip to content

Commit 243173f

Browse files
committed
small fix
1 parent e6e0c4a commit 243173f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/quantizers/finegrained_fp8/finegrained_fp8_quantizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def create_quantized_param(
106106

107107
if rows % block_size_m != 0 or cols % block_size_n != 0:
108108
raise ValueError(
109-
f"Matrix dimensions ({rows}, {cols}) must be divisible by block sizes ({block_size_m}, {block_size_n} for {param_name})"
109+
f"Matrix dimensions ({rows}, {cols}) must be divisible by block sizes ({block_size_m}, {block_size_n}) for {param_name}"
110110
)
111111
param_value_orig_shape = param_value.shape
112112

0 commit comments

Comments
 (0)