[NPU] Split pyproject npu from pyproject other (#17641)

This commit is contained in:
Makcum888e
2026-01-26 20:45:44 +03:00
committed by GitHub
parent 51d139b867
commit bba6e38ff8
9 changed files with 162 additions and 17 deletions

View File

@@ -99,9 +99,6 @@ diffusion_hip = [
"runai_model_streamer",
]
# https://docs.sglang.io/platforms/ascend_npu.html
srt_npu = ["sglang[runtime_common]"]
# For Intel Gaudi(device : hpu) follow the installation guide
# https://docs.vllm.ai/en/latest/getting_started/gaudi-installation.html
srt_hpu = ["sglang[runtime_common]"]
@@ -145,12 +142,10 @@ test = [
]
all_hip = ["sglang[srt_hip]"]
all_npu = ["sglang[srt_npu]"]
all_hpu = ["sglang[srt_hpu]"]
all_musa = ["sglang[srt_musa]", "sglang[diffusion_musa]"]
dev_hip = ["sglang[all_hip]", "sglang[test]"]
dev_npu = ["sglang[all_npu]", "sglang[test]"]
dev_hpu = ["sglang[all_hpu]", "sglang[test]"]
dev_musa = ["sglang[all_musa]", "sglang[test]"]