From 547003bdd0a593a15e92351d0ed97dce98a38e9f Mon Sep 17 00:00:00 2001 From: Qiaolin Yu Date: Fri, 17 Oct 2025 21:54:36 -0700 Subject: [PATCH] fix command line usage of profiling (#11793) --- docs/developer_guide/benchmark_and_profiling.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/developer_guide/benchmark_and_profiling.md b/docs/developer_guide/benchmark_and_profiling.md index 458ca5fd0..18953f6a9 100644 --- a/docs/developer_guide/benchmark_and_profiling.md +++ b/docs/developer_guide/benchmark_and_profiling.md @@ -152,7 +152,8 @@ curl -X POST /start_profile \ # Start profiling with merge enabled python -m sglang.profiler \ --num-steps 10 \ - --activities CPU GPU \ + --cpu \ + --gpu \ --output-dir /tmp/profiles \ --merge-profiles # optional argument to merge profile traces (default=False) ```