Skip to content

Commit 04a797c

Browse files
[Doc]: fixing typos in various files. (#29717)
Signed-off-by: Didier Durand <[email protected]>
1 parent 6afc0ff commit 04a797c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

vllm/distributed/device_communicators/pynccl_allocator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def __enter__(self):
157157
if self.disabled:
158158
return self
159159
assert self.pynccl_comm is not None, (
160-
"Symmetric memory requires pynccl to be initalized"
160+
"Symmetric memory requires pynccl to be initialized"
161161
)
162162
assert self.pynccl_comm.nccl_version >= 22703, (
163163
"NCCL version 2.27.3 or higher is required for NCCL symmetric memory"

vllm/distributed/parallel_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1583,7 +1583,7 @@ def destroy_distributed_environment():
15831583

15841584

15851585
def cleanup_dist_env_and_memory(shutdown_ray: bool = False):
1586-
# Ensure all objects are not freezed before cleanup
1586+
# Ensure all objects are not frozen before cleanup
15871587
gc.unfreeze()
15881588

15891589
destroy_model_parallel()

vllm/entrypoints/openai/serving_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ async def load_lora_adapter(
150150
lora_request.base_model_name = base_model_name
151151

152152
# Validate that the adapter can be loaded into the engine
153-
# This will also pre-load it for incoming requests
153+
# This will also preload it for incoming requests
154154
try:
155155
await self.engine_client.add_lora(lora_request)
156156
except Exception as e:

vllm/model_executor/layers/quantization/quark/schemes/quark_ocp_mx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
# use `rocm_aiter_ops.is_asm_fp4_gemm_dynamic_quant_enabled()`
3838
# for envs checks which does not require @cache anymore.
3939
# triton kernel is torch compile compatible.
40-
# does not require direct registeration.
40+
# does not require direct registration.
4141
# use `rocm_aiter_ops.triton_fp4_gemm_dynamic_qaunt`.
4242
@cache
4343
def is_rocm_aiter_fp4_asm_gemm_enabled() -> bool:

vllm/transformers_utils/repo_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def file_or_path_exists(
171171
repo_id=model, filename=config_name, revision=revision
172172
)
173173
if isinstance(cached_filepath, str):
174-
# The config file exists in cache- we can continue trying to load
174+
# The config file exists in cache - we can continue trying to load
175175
return True
176176

177177
# NB: file_exists will only check for the existence of the config file on

0 commit comments

Comments
 (0)