[Dep] Upgrade flashinfer to 0.6.14 (#29910)

Co-authored-by: Brayden Zhong <b8zhong@uwaterloo.ca>
Co-authored-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com>
This commit is contained in:
Baizhou Zhang
2026-07-09 17:52:33 -07:00
committed by GitHub
co-authored by Brayden Zhong Mohammad Miadh Angkad
parent b2f9a95867
commit 2c6cd1ef41
6 changed files with 48 additions and 25 deletions
+1 -2
View File
@@ -31,8 +31,7 @@ dependencies = [
"einops",
"fastapi",
"flash-attn-4==4.0.0b15",
"flashinfer_cubin==0.6.12",
"flashinfer_python[cu13]==0.6.12", # keep it aligned with jit-cache version in Dockerfile
"flashinfer_python[cu13]==0.6.14", # keep it aligned with jit-cache version in Dockerfile
"gguf",
"interegular",
"IPython",
+1 -1
View File
@@ -1303,7 +1303,7 @@ def _set_envs_and_config(server_args: ServerArgs):
if server_args.attention_backend == "flashinfer":
assert_pkg_version(
"flashinfer_python",
"0.6.12",
"0.6.14",
"Please uninstall the old version and "
"reinstall the latest version by following the instructions "
"at https://docs.flashinfer.ai/installation.html.",
+1 -1
View File
@@ -1891,7 +1891,7 @@ def check_pkg_version_at_least(pkg: str, min_version: str) -> bool:
Args:
pkg: Package name (distribution name, e.g., "flashinfer-python")
min_version: Minimum version required (e.g., "0.6.12")
min_version: Minimum version required (e.g., "0.6.14")
Returns:
True if package is installed and version >= min_version, False otherwise