From c7b589d75b7d9d3a764deaa7fd572901dae8609c Mon Sep 17 00:00:00 2001 From: plusNew001 <95567040+plusNew001@users.noreply.github.com> Date: Wed, 12 Nov 2025 15:23:28 +0800 Subject: [PATCH] [CI][XPU] Fix EP Case Bug (#4976) * Update health check endpoint to use port variable * Update scripts/run_ci_xpu.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update scripts/run_ci_xpu.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update scripts/run_ci_xpu.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update installation method for paddlepaddle-xpu Revert to installing paddlepaddle-xpu from the official repository. * Modify XPU_VISIBLE_DEVICES based on GPU_ID --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- scripts/run_ci_xpu.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/run_ci_xpu.sh b/scripts/run_ci_xpu.sh index 1fcc6e114..b6e01fcae 100644 --- a/scripts/run_ci_xpu.sh +++ b/scripts/run_ci_xpu.sh @@ -388,7 +388,11 @@ rm -rf log/* rm -f core* ipcrm --all=msg xpu-smi -export XPU_VISIBLE_DEVICES="0,1,2,3,4,5,6,7" +if [[ "$GPU_ID" == "0" ]]; then + export XPU_VISIBLE_DEVICES="0,1,2,3" +else + export XPU_VISIBLE_DEVICES="4,5,6,7" +fi export BKCL_ENABLE_XDR=1 export BKCL_RDMA_NICS=xgbe1,xgbe2,xgbe3,xgbe4 export BKCL_TRACE_TOPO=1