From d5dbdbfcb2cfc2e4d82a1e2605576f1e4e440ca7 Mon Sep 17 00:00:00 2001 From: Angela Yi Date: Fri, 21 Nov 2025 17:10:27 -0800 Subject: [PATCH] [docs] Fix cudagraph mode config (#29170) Signed-off-by: angelayi --- docs/design/debug_vllm_compile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design/debug_vllm_compile.md b/docs/design/debug_vllm_compile.md index 3b454e851b54e..8912eb58f8ac7 100644 --- a/docs/design/debug_vllm_compile.md +++ b/docs/design/debug_vllm_compile.md @@ -9,7 +9,7 @@ TL;DR: |----------|----------|-------------| | --enforce-eager | enforce_eager=True | Turn off torch.compile and CUDAGraphs | | -O.mode=0 | mode=CompilationMode.NONE | Turn off torch.compile only | -| -O.cudagraph_mode=NONE | compilation_config=CompilationConfig(mode=CompilationMode.NONE) | Turn off CUDAGraphs only | +| -O.cudagraph_mode=NONE | compilation_config=CompilationConfig(cudagraph_mode=CUDAGraphMode.NONE) | Turn off CUDAGraphs only | | -O.backend=eager | compilation_config=CompilationConfig(backend='eager') | Turn off TorchInductor | ## vLLM-torch.compile overview