[Model] Support DeepSeek-V4

This commit is contained in:
chenxb002
2026-04-24 09:50:34 +08:00
commit b9925203b8
172 changed files with 44780 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM-MLU project
from vllm import ModelRegistry
def register_model():
from .deepseek_v4 import MLUDeepseekV4ForCausalLM # noqa: F401
ModelRegistry.register_model(
"DeepseekV4ForCausalLM",
"vllm_mlu.model_executor.models.deepseek_v4:MLUDeepseekV4ForCausalLM")