From 56f6589ecb7c2b295dfd278b9c9bd4290abbe058 Mon Sep 17 00:00:00 2001 From: shangmingc Date: Mon, 5 May 2025 13:47:37 +0800 Subject: [PATCH] [PD] Optimize disaggregation ib device help info (#5781) --- python/sglang/srt/server_args.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/sglang/srt/server_args.py b/python/sglang/srt/server_args.py index 5a0b10a44..ec56c6b94 100644 --- a/python/sglang/srt/server_args.py +++ b/python/sglang/srt/server_args.py @@ -1250,7 +1250,9 @@ class ServerArgs: "--disaggregation-ib-device", type=str, default=ServerArgs.disaggregation_ib_device, - help="The ib device for disaggregation transfer. Default is None, it will be detected automatically if using the mooncake backend.", + help="The InfiniBand devices for disaggregation transfer, accepts single device (e.g., --disaggregation-ib-device mlx5_0) " + "or multiple comma-separated devices (e.g., --disaggregation-ib-device mlx5_0,mlx5_1). " + "Default is None, which triggers automatic device detection when mooncake backend is enabled.", ) @classmethod