Skip to content

Commit eca7a8f

Browse files
[Doc]: fix typos in various files (#29230)
Signed-off-by: Didier Durand <[email protected]> Signed-off-by: Harry Mellor <[email protected]> Co-authored-by: Harry Mellor <[email protected]>
1 parent 8005e60 commit eca7a8f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

benchmarks/kernels/deepgemm/README.md

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

33
This directory includes benchmarks between DeepSeek's DeepGEMM block fp8 kernels against vLLM's existing triton and CUTLASS-based kernels.
44

5-
Currently this just includes dense GEMMs and only works on Hopper GPUs.
5+
Currently, this just includes dense GEMMs and only works on Hopper GPUs.
66

77
## Setup
88

vllm/config/vllm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class VllmConfig:
9696
"""`torch.compile` and cudagraph capture configuration for the model.
9797
9898
As a shorthand, one can append compilation arguments via
99-
-0.parameter=arguement such as `-O.mode=3` (same as `-O='{"mode":3}'`).
99+
-0.parameter=argument such as `-O.mode=3` (same as `-O='{"mode":3}'`).
100100
101101
You can specify the full compilation config like so:
102102
`{"mode": 3, "cudagraph_capture_sizes": [1, 2, 4, 8]}`

vllm/forward_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def chunked_sizes(
153153
@contextmanager
154154
def sp_local_sizes(self, sequence_parallel_size: int):
155155
"""
156-
Context mamager for setting self.local_sizes. Same as self.chunked_sizes
156+
Context manager for setting self.local_sizes. Same as self.chunked_sizes
157157
but without any chunking.
158158
"""
159159
self.local_sizes = _compute_sp_num_tokens(

vllm/v1/worker/gpu_input_batch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ def swap_states(self, i1: int, i2: int) -> None:
525525
# NOTE: the following is unsafe
526526
# self.token_ids_cpu[i1, ...], self.token_ids_cpu[i2, ...], =\
527527
# self.token_ids_cpu[i2, ...], self.token_ids_cpu[i1, ...]
528-
# instead, we need to temporiarily copy the data for one of the indices
528+
# instead, we need to temporarily copy the data for one of the indices
529529
# TODO(lucas): optimize this by only copying valid indices
530530
tmp = self.token_ids_cpu[i1, ...].copy()
531531
self.token_ids_cpu[i1, ...] = self.token_ids_cpu[i2, ...]

0 commit comments

Comments
 (0)