Skip to content

Commit c5f4874

Browse files
committed
fix
Signed-off-by: Yiqing Yan <[email protected]>
1 parent 1bc719a commit c5f4874

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jenkins/L0_Test.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ def createKubernetesPodConfig(image, type, arch = "amd64", gpuCount = 1, perfMod
656656
}
657657

658658
def gpuType = KubernetesManager.selectGPU(type)
659-
if (type.contains("b300")) {
659+
if (type.contains("b300-x4")) {
660660
gpuType = "NVIDIA_HGX_B300"
661661
}
662662
nodeLabelPrefix = type
@@ -1846,7 +1846,7 @@ def launchTestJobs(pipeline, testFilter, dockerNode=null)
18461846
"DGX_H200-4_GPUs-TensorRT-Post-Merge-1": ["dgx-h200-x4", "l0_dgx_h200", 1, 3, 4],
18471847
"DGX_H200-4_GPUs-TensorRT-Post-Merge-2": ["dgx-h200-x4", "l0_dgx_h200", 2, 3, 4],
18481848
"DGX_H200-4_GPUs-TensorRT-Post-Merge-3": ["dgx-h200-x4", "l0_dgx_h200", 3, 3, 4],
1849-
"B300_PCIe-PyTorch-1": ["b300", "l0_b300", 1, 1],
1849+
"DGX_B300-4_GPUs-PyTorch-1": ["b300-x4", "l0_dgx_b300", 1, 1, 4],
18501850
]
18511851

18521852
parallelJobs = x86TestConfigs.collectEntries{key, values -> [key, [createKubernetesPodConfig(LLM_DOCKER_IMAGE, values[0], "amd64", values[4] ?: 1, key.contains("Perf")), {
@@ -2465,7 +2465,7 @@ pipeline {
24652465

24662466
def testPhase2StageName = env.testPhase2StageName
24672467
if (testPhase2StageName) {
2468-
def dgxSigns = ["DGX_H100", "DGX_H200", "GB200", "DGX_B200"]
2468+
def dgxSigns = ["DGX_H100", "DGX_H200", "GB200", "DGX_B200", "DGX_B300"]
24692469
singleGpuJobs = parallelJobs.findAll{!dgxSigns.any{sign -> it.key.contains(sign)}}
24702470
dgxJobs = parallelJobs.findAll{dgxSigns.any{sign -> it.key.contains(sign)}}
24712471
}

0 commit comments

Comments
 (0)