Skip to content

Commit 1576409

Browse files
committed
fix typo
Signed-off-by: Kyle Sayers <[email protected]>
1 parent dbf10e5 commit 1576409

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/model_executor/layers/quantization/kv_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def apply(self, layer: torch.nn.Module) -> torch.Tensor:
4545
raise RuntimeError(f"{self.__class__.__name__}.apply should not be called.")
4646

4747
def process_weights_after_loading(self, layer: torch.nn.Module) -> None:
48-
# skip if there are no weights to process (for examplle, weight reloading)
48+
# skip if there are no weights to process (for example, weight reloading)
4949
if not hasattr(layer, "q_scale"):
5050
assert not hasattr(layer, "k_scale")
5151
assert not hasattr(layer, "v_scale")

0 commit comments

Comments
 (0)