From bbe9bd9684218038cca9663ac79dfe7c4f28a351 Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Tue, 30 Jan 2024 13:40:37 -0800 Subject: [PATCH] [Minor] Fix a small typo (#2672) --- 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 46bff7e1..59cc1965 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