Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ srt = [
"torchvision==0.22.1",
"cuda-python",
"einops",
"flashinfer_python==0.2.6.post1",
"flashinfer_python==0.2.7",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider defining the flashinfer version in a single place (e.g., a variable at the top of the file) and reuse it throughout the file to ensure consistency and ease future updates.

]

blackwell = [
Expand All @@ -69,7 +69,7 @@ blackwell = [
"torchvision==0.22.1",
"cuda-python",
"einops",
"flashinfer_python==0.2.6.post1",
"flashinfer_python==0.2.7",
]

# HIP (Heterogeneous-computing Interface for Portability) for AMD
Expand Down
2 changes: 1 addition & 1 deletion python/sglang/srt/entrypoints/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ def _set_envs_and_config(server_args: ServerArgs):
if server_args.attention_backend == "flashinfer":
assert_pkg_version(
"flashinfer_python",
"0.2.6.post1",
"0.2.7",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider defining the flashinfer version in a single place (e.g., a variable in version.py) and reuse it here to ensure consistency and ease future updates.

"Please uninstall the old version and "
"reinstall the latest version by following the instructions "
"at https://docs.flashinfer.ai/installation.html.",
Expand Down
Loading