@@ -656,7 +656,7 @@ def createKubernetesPodConfig(image, type, arch = "amd64", gpuCount = 1, perfMod
656
656
}
657
657
658
658
def gpuType = KubernetesManager . selectGPU(type)
659
- if (type. contains(" b300" )) {
659
+ if (type. contains(" b300-x4 " )) {
660
660
gpuType = " NVIDIA_HGX_B300"
661
661
}
662
662
nodeLabelPrefix = type
@@ -1846,7 +1846,7 @@ def launchTestJobs(pipeline, testFilter, dockerNode=null)
1846
1846
" DGX_H200-4_GPUs-TensorRT-Post-Merge-1" : [" dgx-h200-x4" , " l0_dgx_h200" , 1 , 3 , 4 ],
1847
1847
" DGX_H200-4_GPUs-TensorRT-Post-Merge-2" : [" dgx-h200-x4" , " l0_dgx_h200" , 2 , 3 , 4 ],
1848
1848
" 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 ],
1850
1850
]
1851
1851
1852
1852
parallelJobs = x86TestConfigs. collectEntries{key , values -> [key, [createKubernetesPodConfig(LLM_DOCKER_IMAGE , values[0 ], " amd64" , values[4 ] ?: 1 , key. contains(" Perf" )), {
@@ -2465,7 +2465,7 @@ pipeline {
2465
2465
2466
2466
def testPhase2StageName = env. testPhase2StageName
2467
2467
if (testPhase2StageName) {
2468
- def dgxSigns = [" DGX_H100" , " DGX_H200" , " GB200" , " DGX_B200" ]
2468
+ def dgxSigns = [" DGX_H100" , " DGX_H200" , " GB200" , " DGX_B200" , " DGX_B300 " ]
2469
2469
singleGpuJobs = parallelJobs. findAll{!dgxSigns .any {sign -> it. key. contains(sign)}}
2470
2470
dgxJobs = parallelJobs. findAll{dgxSigns .any {sign -> it. key. contains(sign)}}
2471
2471
}
0 commit comments