[NPU]add nightly-test-npu (#14143)

This commit is contained in:
Cherry_ming
2025-12-05 00:43:35 +08:00
committed by GitHub
parent b01fc161eb
commit 1808df48fe
36 changed files with 1285 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ HW_MAPPING = {
"cpu": HWBackend.CPU,
"cuda": HWBackend.CUDA,
"amd": HWBackend.AMD,
"npu": HWBackend.NPU,
}
# Per-commit test suites (run on every PR)
@@ -17,6 +18,7 @@ PER_COMMIT_SUITES = {
HWBackend.CPU: ["default"],
HWBackend.AMD: ["stage-a-test-1"],
HWBackend.CUDA: ["stage-a-test-1"],
HWBackend.NPU: [],
}
# Nightly test suites (run nightly, organized by GPU configuration)
@@ -33,6 +35,12 @@ NIGHTLY_SUITES = {
],
HWBackend.AMD: ["nightly-amd"],
HWBackend.CPU: [],
HWBackend.NPU: [
"nightly-1-npu-a3",
"nightly-2-npu-a3",
"nightly-4-npu-a3",
"nightly-16-npu-a3",
],
}