We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf10e5 commit 1576409Copy full SHA for 1576409
vllm/model_executor/layers/quantization/kv_cache.py
@@ -45,7 +45,7 @@ def apply(self, layer: torch.nn.Module) -> torch.Tensor:
45
raise RuntimeError(f"{self.__class__.__name__}.apply should not be called.")
46
47
def process_weights_after_loading(self, layer: torch.nn.Module) -> None:
48
- # skip if there are no weights to process (for examplle, weight reloading)
+ # skip if there are no weights to process (for example, weight reloading)
49
if not hasattr(layer, "q_scale"):
50
assert not hasattr(layer, "k_scale")
51
assert not hasattr(layer, "v_scale")
0 commit comments