Skip to content
Merged
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
13 changes: 11 additions & 2 deletions jenkins/L0_Test.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,13 @@ def runLLMTestlistWithAgent(pipeline, platform, testList, config=VANILLA_CONFIG,
dockerArgs += " --device=/dev/gdrdrv:/dev/gdrdrv"
}
}
if (fileExists('/home/scratch.trt_llm_data_ci')) {
dockerArgs += " -v /home/scratch.trt_llm_data_ci:/scratch.trt_llm_data:ro "
} else if (fileExists('/home/scratch.trt_llm_data')) {
dockerArgs += " -v /home/scratch.trt_llm_data:/scratch.trt_llm_data:ro "
} else {
echo "Existing TRT-LLM data scratch mount points cannot be set up in this cluster, ignore..."
}
}

dockerArgs = "${dockerArgs} " +
Expand All @@ -689,7 +696,6 @@ def runLLMTestlistWithAgent(pipeline, platform, testList, config=VANILLA_CONFIG,
"--entrypoint=\"\" " +
"--security-opt seccomp=unconfined " +
"-u root:root " +
"-v /home/scratch.trt_llm_data_ci:/scratch.trt_llm_data:ro " +
"-v /tmp/ccache:${CCACHE_DIR}:rw " +
"-v /tmp/pipcache/http-v2:/root/.cache/pip/http-v2:rw " +
"--cap-add=SYSLOG"
Expand Down Expand Up @@ -1834,7 +1840,10 @@ def createKubernetesPodConfig(image, type, arch = "amd64", gpuCount = 1, perfMod
server: 10.117.145.14
path: /vol/scratch1/scratch.michaeln_blossom
"""
if (type.contains("6000d") || type.contains("gh200")) {

// Austin FlexCache looks slow and unstable recently. Remove gh200 temporarily.
// That means gh200 nodes will use the default Blossom data scratch.
if (type.contains("6000d")) {
// rtx-pro-6000d and gh200 nodes are located in Austin DC, we use the FlexCache to speed up the data access.
llmModelVolume = """
- name: scratch-trt-llm-data
Expand Down
Loading