We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49415eb commit 67d72b4Copy full SHA for 67d72b4
vllm_ascend/ops/fused_moe/moe_comm_method.py
@@ -19,7 +19,6 @@
19
from typing import Any, Dict, Optional
20
21
import torch
22
-from vllm.config import get_current_vllm_config
23
from vllm.forward_context import get_forward_context
24
from vllm.model_executor.layers.fused_moe import FusedMoEConfig
25
@@ -52,8 +51,6 @@ class MoECommMethod(ABC):
52
51
"""Base class for MoE communication methods."""
53
54
def __init__(self, moe_config: FusedMoEConfig):
55
- self.model_type = get_current_vllm_config(
56
- ).model_config.hf_config.model_type
57
self.moe_config = moe_config
58
59
self.token_dispatcher = self._get_token_dispatcher()
0 commit comments