@@ -2153,8 +2153,12 @@ def getMakoArgsFromStageName(stageName, parseSysinfo=false) {
21532153 // If stageName contains "-FMHA-", add "backend=fmha" to makoArgs
21542154 // At this point, only tests with backend=fmha or unspecified backend will be run
21552155 makoArgs + = [" backend=fmha" ]
2156+ } else if (stageName. contains(" -AutoDeploy-" )) {
2157+ // If stageName contains "-AutoDeploy-", add "backend=autodeploy" to makoArgs
2158+ // At this point, only tests with backend=autodeploy or unspecified backend will be run
2159+ makoArgs + = [" backend=autodeploy" ]
21562160 } else {
2157- // If stageName does not contain "-PyTorch-", "-TensorRT-", "-CPP-", "-Triton-", or "-FMHA -", do not add any backend
2161+ // If stageName does not contain "-PyTorch-", "-TensorRT-", "-CPP-", "-Triton-", "-FMHA-", or "-AutoDeploy -", do not add any backend
21582162 // At this point, all tests will be run
21592163 // For cases where backend is not specified in makoArgs, we will match all types of backends and tests without specified backend
21602164 }
@@ -3155,6 +3159,7 @@ def launchTestJobs(pipeline, testFilter)
31553159 " A30-Triton-1" : [" a30" , " l0_a30" , 1 , 1 ],
31563160 " A30-PyTorch-1" : [" a30" , " l0_a30" , 1 , 2 ],
31573161 " A30-PyTorch-2" : [" a30" , " l0_a30" , 2 , 2 ],
3162+ " A30-AutoDeploy-1" : [" a30" , " l0_a30" , 1 , 1 ],
31583163 " A30-CPP-1" : [" a30" , " l0_a30" , 1 , 3 ],
31593164 " A30-CPP-2" : [" a30" , " l0_a30" , 2 , 3 ],
31603165 " A30-CPP-3" : [" a30" , " l0_a30" , 3 , 3 ],
@@ -3166,11 +3171,13 @@ def launchTestJobs(pipeline, testFilter)
31663171 " H100_PCIe-PyTorch-3" : [" h100-cr" , " l0_h100" , 3 , 4 ],
31673172 " H100_PCIe-PyTorch-4" : [" h100-cr" , " l0_h100" , 4 , 4 ],
31683173 " H100_PCIe-PyTorch-Ray-1" : [" h100-cr" , " l0_h100" , 1 , 1 ],
3174+ " H100_PCIe-AutoDeploy-1" : [" h100-cr" , " l0_h100" , 1 , 1 ],
31693175 " H100_PCIe-CPP-1" : [" h100-cr" , " l0_h100" , 1 , 1 ],
31703176 " H100_PCIe-TensorRT-1" : [" h100-cr" , " l0_h100" , 1 , 1 ],
31713177 " B200_PCIe-PyTorch-1" : [" b100-ts2" , " l0_b200" , 1 , 3 ],
31723178 " B200_PCIe-PyTorch-2" : [" b100-ts2" , " l0_b200" , 2 , 3 ],
31733179 " B200_PCIe-PyTorch-3" : [" b100-ts2" , " l0_b200" , 3 , 3 ],
3180+ " B200_PCIe-AutoDeploy-1" : [" b100-ts2" , " l0_b200" , 1 , 1 ],
31743181 " RTX5090-PyTorch-1" : [" rtx-5090" , " l0_gb202" , 1 , 1 ],
31753182 " RTX5080-TensorRT-1" : [" rtx-5080" , " l0_gb203" , 1 , 2 ],
31763183 " RTX5080-TensorRT-2" : [" rtx-5080" , " l0_gb203" , 2 , 2 ],
@@ -3262,8 +3269,10 @@ def launchTestJobs(pipeline, testFilter)
32623269 " DGX_H100-4_GPUs-PyTorch-GptOss-1" : [" dgx-h100-x4-oci" , " l0_dgx_h100" , 1 , 1 , 4 ],
32633270 " DGX_H100-4_GPUs-PyTorch-Others-1" : [" dgx-h100-x4-oci" , " l0_dgx_h100" , 1 , 1 , 4 ],
32643271 " DGX_H100-4_GPUs-PyTorch-Ray-1" : [" dgx-h100-x4-oci" , " l0_dgx_h100" , 1 , 1 , 4 ],
3272+ " DGX_H100-4_GPUs-AutoDeploy-1" : [" dgx-h100-x4-oci" , " l0_dgx_h100" , 1 , 1 , 4 ],
32653273 " DGX_B200-4_GPUs-PyTorch-1" : [" b200-x4-lbd" , " l0_dgx_b200" , 1 , 1 , 4 , 1 , true ],
32663274 " DGX_B200-4_GPUs-PyTorch-Ray-1" : [" b200-x4-lbd" , " l0_dgx_b200" , 1 , 1 , 4 , 1 , true ],
3275+ " DGX_B200-4_GPUs-AutoDeploy-1" : [" b200-x4-lbd" , " l0_dgx_b200" , 1 , 1 , 4 , 1 , true ],
32673276 " DGX_B200-8_GPUs-PyTorch-1" : [" b200-x8-lbd" , " l0_dgx_b200" , 1 , 1 , 8 , 1 , true ],
32683277 " DGX_B200-4_GPUs-PyTorch-Post-Merge-1" : [" b200-x4-lbd" , " l0_dgx_b200" , 1 , 2 , 4 , 1 , true ],
32693278 " DGX_B200-4_GPUs-PyTorch-Post-Merge-2" : [" b200-x4-lbd" , " l0_dgx_b200" , 2 , 2 , 4 , 1 , true ],
0 commit comments