From 219e95569adf694ce6b9b32ff752a038ac3e2ee6 Mon Sep 17 00:00:00 2001 From: bhsueh_NV <11360707+byshiue@users.noreply.github.com> Date: Mon, 8 Sep 2025 15:41:41 +0800 Subject: [PATCH 1/2] [https://nvbugs/5506683][fix] adjust the CI (#7604) Signed-off-by: bhsueh <11360707+byshiue@users.noreply.github.com> --- tests/integration/defs/accuracy/references/mmlu.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/defs/accuracy/references/mmlu.yaml b/tests/integration/defs/accuracy/references/mmlu.yaml index 4d90217b27..430c5a1821 100644 --- a/tests/integration/defs/accuracy/references/mmlu.yaml +++ b/tests/integration/defs/accuracy/references/mmlu.yaml @@ -208,10 +208,10 @@ Qwen3/Qwen3-30B-A3B: accuracy: 79.53 - quant_algo: FP8 kv_cache_quant_algo: FP8 - accuracy: 80.65 + accuracy: 79.53 - quant_algo: NVFP4 kv_cache_quant_algo: FP8 - accuracy: 80.65 + accuracy: 79.53 - quant_algo: W4A8_MXFP4_FP8 accuracy: 79.78 - quant_algo: W4A8_MXFP4_MXFP8 From ed27a72bcf71f7ab0e7137f7999988c9de82386f Mon Sep 17 00:00:00 2001 From: Yanchao Lu Date: Mon, 8 Sep 2025 17:07:09 +0800 Subject: [PATCH 2/2] [None][ci] Fix a typo in the Slurm command Signed-off-by: Yanchao Lu --- jenkins/L0_Test.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/L0_Test.groovy b/jenkins/L0_Test.groovy index e8792ae0e1..441b6a8d78 100644 --- a/jenkins/L0_Test.groovy +++ b/jenkins/L0_Test.groovy @@ -364,7 +364,7 @@ def runLLMTestlistOnSlurm(pipeline, platform, testList, config=VANILLA_CONFIG, p // Wait 10 minutes to check status of the node again sleep(time: 10, unit: 'MINUTES') // Avoid the node being stuck in the held state. - Utils.exec(pipeline, Utils.sshUserCmd(remote, "\"scontrol release ${slurmJobID} || true\"")) + Utils.exec(pipeline, script: Utils.sshUserCmd(remote, "\"scontrol release ${slurmJobID} || true\""), numRetries: 3) counter++ } }