Skip to content

Commit 21c991b

Browse files
committed
[Fix]: Remove incomplete import statement in models/utils.py
Fixed syntax error where an incomplete 'from vllm.utils import (' statement was left in the file, causing compilation failures. Signed-off-by: Yeshwanth Surya <[email protected]>
1 parent f2bd3a8 commit 21c991b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

vllm/model_executor/models/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@
2222
from vllm.model_executor.model_loader.weight_utils import default_weight_loader
2323
from vllm.multimodal import NestedTensors
2424
from vllm.sequence import IntermediateTensors
25-
from vllm.utils import (
25+
from vllm.utils.math_utils import cdiv
2626
from vllm.utils.platform_utils import (
2727
is_pin_memory_available,
2828
is_uva_available,
2929
)
30-
from vllm.utils.math_utils import cdiv
3130
from vllm.utils.torch_utils import (
3231
direct_register_custom_op,
3332
get_cuda_view_from_cpu_tensor,

0 commit comments

Comments
 (0)