Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions jenkins/L0_MergeRequest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,8 @@ def getAutoTriggerTagList(pipeline, testFilter, globalVars) {
}
def specialFileToTagMap = [
"tensorrt_llm/_torch/models/modeling_deepseekv3.py": ["-DeepSeek-"],
"tests/integration/defs/triton_server/": ["-Triton-"],
"triton_backend/": ["-Triton-"],
"cpp/kernels/fmha_v2/": ["-FMHA-"],
"tensorrt_llm/_torch/models/modeling_gpt_oss.py": ["-GptOss-"],
]
Expand Down
3 changes: 2 additions & 1 deletion jenkins/L0_Test.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3209,6 +3209,7 @@ def launchTestJobs(pipeline, testFilter)
"pytorch": "-PyTorch-",
"tensorrt": "-TensorRT-",
"cpp": "-CPP-",
"triton": "-Triton-",
"fmha": "-FMHA-",
]
def backendModeList = backendMode.collect { changeMap.get(it) }.flatten()
Expand All @@ -3233,7 +3234,7 @@ def launchTestJobs(pipeline, testFilter)
} else {
echo "ONLY_ONE_GROUP_CHANGED mode is true. The group is: ${testFilter[(ONLY_ONE_GROUP_CHANGED)]}."
def excludedBackends = new HashMap()
excludedBackends["PyTorch"] = ["-CPP-", "-TensorRT-", "-Triton-", "-FMHA-"]
excludedBackends["PyTorch"] = ["-CPP-", "-TensorRT-", "-FMHA-"] // Only pytorch file change also need to run triton tests
excludedBackends["Triton"] = ["-PyTorch-", "-CPP-", "-TensorRT-", "-FMHA-"]
excludedBackends["FMHA"] = ["-PyTorch-", "-CPP-", "-TensorRT-", "-Triton-"]
def group = testFilter[(ONLY_ONE_GROUP_CHANGED)]
Expand Down