-
Notifications
You must be signed in to change notification settings - Fork 7
feat: add CUDA 13 runtime and CI coverage #656
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
base: binaryaaron/cuda13/dependency-manifest
Are you sure you want to change the base?
Changes from all commits
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 |
|---|---|---|
|
|
@@ -21,7 +21,7 @@ torch_runtime_deps = [ | |
|
|
||
| cuda_runtime_deps = [ | ||
| { name = "flashinfer-jit-cache", version = "0.6.12", local = "{torch_local_version}", sys_platform = "linux", source_kind = "flashinfer" }, | ||
| { name = "nvidia-cublas-{cuda_package_suffix}", sys_platform = "linux" }, | ||
| { name = "nvidia-cublas{nvidia_package_suffix}", sys_platform = "linux" }, | ||
| "nvidia-ml-py; sys_platform == 'linux'", | ||
| "torch-c-dlpack-ext", | ||
| { name = "triton", specifier = ">=2.0.0", sys_platform = "linux", source_kind = "pytorch" }, | ||
|
|
@@ -35,7 +35,7 @@ torch_wheel_deps = [ | |
| { name = "torchao", version = "0.17.0", local = "{torch_local_version}", sys_platform = "linux", arch = "x86_64", source_kind = "pytorch" }, | ||
| ] | ||
|
|
||
| managed_extras = ["cpu", "cu129"] | ||
| managed_extras = ["cpu", "cu129", "cu130"] | ||
| conflict_extras = ["cpu"] | ||
| nvidia_cuda_libraries = [ | ||
| "cublas", | ||
|
|
@@ -109,3 +109,14 @@ cuda_package_suffix = "cu12" | |
| dependencies = [ | ||
| "vllm==0.24.0+{torch_local_version}; sys_platform == 'linux'", | ||
| ] | ||
|
|
||
| [variants.cu130] | ||
| cuda_package_suffix = "cu13" | ||
| nvidia_package_suffix = "" | ||
| nvidia_index = "nvidia-pypi-public" | ||
| flashinfer_index = { name = "flashinfer-jit-cache-cu130", url = "https://flashinfer.ai/whl/cu130", explicit = true } | ||
| # No [sources.cu130] vllm route yet: unlike cu129, there is no CUDA-13-specific vllm wheel | ||
| # build to pin, so this resolves from the default index. Add one here once that exists. | ||
| dependencies = [ | ||
| "vllm==0.24.0; sys_platform == 'linux'", | ||
| ] | ||
|
Comment on lines
+120
to
+122
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.
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||
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.
python-versionThe
gpu-smoke-testmatrix explicitly setspython-version: "3.13"on each entry, but thegpu-e2e-testmatrix entries contain onlycuda-extraandrequired. If thesetup-gpu-test-envaction has a requiredpython-versioninput, the e2e job will silently receive an empty string. The pre-PR e2e job also didn't passpython-version, so the action likely has a working default — but it may be worth aligning the two jobs to make the Python version explicit and avoid future drift.