Skip to content

Commit f08c4f1

Browse files
wm901115nwpuunicorn
andauthored
fix spell error (#1654)
Fix the spell error in code - vLLM version: v0.9.1 - vLLM main: vllm-project/vllm@923147b Signed-off-by: unicorn <unicorn@unicorns-MacBook-Pro.local> Co-authored-by: unicorn <unicorn@unicorns-MacBook-Pro.local>
1 parent f2a2039 commit f08c4f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vllm_ascend/quantization/w8a8_dynamic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ def fused_experts_with_mc2(
141141
local_rank = torch.distributed.get_rank(group=ep_group)
142142
all_to_all_group_size = torch.distributed.get_world_size(ep_group)
143143

144-
world_szie = torch.distributed.get_world_size()
145-
tp_size = world_szie // all_to_all_group_size
144+
world_size = torch.distributed.get_world_size()
145+
tp_size = world_size // all_to_all_group_size
146146
tp_rank = rank % tp_size
147147

148148
stage1_kwargs = {

0 commit comments

Comments
 (0)