From 14bb0221366fb08ac4b86dc3bc945e658d603edf Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Tue, 30 Jan 2024 13:18:06 -0800 Subject: [PATCH] Fix a small typo --- vllm/model_executor/parallel_utils/parallel_state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/model_executor/parallel_utils/parallel_state.py b/vllm/model_executor/parallel_utils/parallel_state.py index 46bff7e16b79f..59cc196538571 100644 --- a/vllm/model_executor/parallel_utils/parallel_state.py +++ b/vllm/model_executor/parallel_utils/parallel_state.py @@ -117,7 +117,7 @@ def model_parallel_is_initialized(): def get_tensor_model_parallel_group(): """Get the tensor model parallel group the caller rank belongs to.""" assert _TENSOR_MODEL_PARALLEL_GROUP is not None, ( - "tenosr model parallel group is not initialized") + "tensor model parallel group is not initialized") return _TENSOR_MODEL_PARALLEL_GROUP