-
Notifications
You must be signed in to change notification settings - Fork 86
docs: complete sglang→vllm rename across docs/ + README #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
58a68f8
30490e1
ced24a9
adc4dc4
c8e2b57
7f31a7f
6007ad7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -45,7 +45,7 @@ Vime 继承 slime 的广泛模型支持,包括: | |||||
| Vime 的参数分为三类: | ||||||
|
|
||||||
| 1. **Megatron 参数**:Vime 会读取 Megatron 中的全部参数,可通过传入如 `--tensor-model-parallel-size 2` 的方式配置 Megatron; | ||||||
| 2. **vLLM 参数**:vLLM server 与 engine 相关选项以 `--vllm-` 为前缀(例如 `--vllm-gpu-memory-utilization`);路由相关选项使用 `--router-` 前缀。完整参数见 [slime/backends/vllm_utils/arguments.py](slime/backends/vllm_utils/arguments.py)。 | ||||||
| 2. **vLLM 参数**:vLLM server 与 engine 相关选项以 `--vllm-` 为前缀(例如 `--vllm-gpu-memory-utilization`)。路由相关选项分两类前缀:vllm-router 自身的选项以 `--router-` 传入(例如 `--router-policy round_robin`),Vime 侧用于告诉 Vime *router 在哪里* 的编排参数则以 `--vllm-router-` 为前缀(`--vllm-router-ip`、`--vllm-router-port`、`--vllm-router-request-timeout-secs`)。完整参数见 [slime/backends/vllm_utils/arguments.py](slime/backends/vllm_utils/arguments.py)。 | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The router configuration flags are
Suggested change
|
||||||
| 3. **框架参数**:与 slime/Vime 编排相关的开关(rollout GPU、数据路径、RL 算法等),见 [slime/utils/arguments.py](slime/utils/arguments.py)。 | ||||||
|
|
||||||
| `--rollout-num-gpus-per-engine` 对应每个 vLLM engine 的 tensor parallel size。默认 rollout 入口为 `slime.rollout.vllm_rollout.generate_rollout`。 | ||||||
|
|
@@ -78,7 +78,6 @@ Vime 由 slime 衍生而来。以下上游资源与本仓库文档仍沿用 slim | |||||
| - 上游仓库:[THUDM/slime](https://github.com/THUDM/slime) | ||||||
| - 本仓库英文文档:[docs/en/](docs/en/) | ||||||
| - 本仓库中文文档:[docs/zh/](docs/zh/) | ||||||
| - vLLM 后端设计说明:[docs/zh/advanced/slime_vllm_backend_design_v1.md](docs/zh/advanced/slime_vllm_backend_design_v1.md) | ||||||
|
|
||||||
| ## 常见 Q&A 与致谢 | ||||||
|
|
||||||
|
|
||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Error in the drawn image. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The router configuration flags are
--router-ip,--router-port, and--router-request-timeout-secs(without the--vllm-prefix), as defined inslime/backends/vllm_utils/arguments.py. Please update the documentation to reflect the correct flags.