Skip to content

Commit c03e12e

Browse files
yzimwangxiaoxin (A)
authored andcommitted
[Doc] Fix the config parameter name "enable" in graph_mode.md. (#1159)
Fix the doc typo in graph_mode.md Signed-off-by: yzim <43207690+yzim@users.noreply.github.com>
1 parent 1ce41a7 commit c03e12e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/user_guide/graph_mode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ from vllm import LLM
4747

4848
os.environ["VLLM_USE_V1"] = 1
4949

50-
model = LLM(model="deepseek-ai/DeepSeek-R1-0528", additional_config={"torchair_graph_config": {"enable": True}})
50+
model = LLM(model="deepseek-ai/DeepSeek-R1-0528", additional_config={"torchair_graph_config": {"enabled": True}})
5151
outputs = model.generate("Hello, how are you?")
5252
```
5353

5454
online example:
5555

5656
```shell
57-
vllm serve Qwen/Qwen2-7B-Instruct --additional-config='{"torchair_graph_config": {"enable": true}}'
57+
vllm serve Qwen/Qwen2-7B-Instruct --additional-config='{"torchair_graph_config": {"enabled": true}}'
5858
```
5959

6060
You can find more detail about additional config [here](./additional_config.md)

0 commit comments

Comments
 (0)