From 7894f972bda545ba67fcf525a7f18c857b94e683 Mon Sep 17 00:00:00 2001 From: Bo Deng Date: Tue, 18 Nov 2025 04:27:51 +0000 Subject: [PATCH] [TRTLLM-9287][infra] Change the default backend for accuracy tests from UCX to NIXL Signed-off-by: Bo Deng --- tests/integration/defs/accuracy/test_disaggregated_serving.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integration/defs/accuracy/test_disaggregated_serving.py b/tests/integration/defs/accuracy/test_disaggregated_serving.py index 4e3d6523b55..ae96fbeb015 100644 --- a/tests/integration/defs/accuracy/test_disaggregated_serving.py +++ b/tests/integration/defs/accuracy/test_disaggregated_serving.py @@ -145,7 +145,6 @@ def launch_disaggregated_llm( for i, port in enumerate(ctx_ports): env_ctx = os.environ.copy() - env_ctx["TRTLLM_USE_UCX_KVCACHE"] = "1" gpu_range = range(current_gpu_offset, current_gpu_offset + ctx_total_gpus) env_ctx["CUDA_VISIBLE_DEVICES"] = ",".join(map(str, gpu_range)) @@ -166,7 +165,6 @@ def launch_disaggregated_llm( for i, port in enumerate(gen_ports): env_gen = os.environ.copy() - env_gen["TRTLLM_USE_UCX_KVCACHE"] = "1" gpu_range = range(current_gpu_offset, current_gpu_offset + gen_total_gpus) env_gen["CUDA_VISIBLE_DEVICES"] = ",".join(map(str, gpu_range))