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,118 changes: 4,051 additions & 67 deletions cuda_bindings/pixi.lock

Large diffs are not rendered by default.

18 changes: 11 additions & 7 deletions cuda_bindings/pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ preview = ["pixi-build"]

[workspace.build-variants]
python = ["3.10.*", "3.11.*", "3.12.*", "3.13.*", "3.14.*"]
# Keep source-package metadata aligned with the consuming environment's CUDA major.
cuda-version = ["12.*", "13.2.*"]

[dependencies]
cuda-bindings = { path = "." }
Expand Down Expand Up @@ -50,21 +52,21 @@ CUDA_HOME = "$CONDA_PREFIX/targets/sbsa-linux"
[feature.cython-tests.target.win-64.activation.env]
CUDA_HOME = '%CONDA_PREFIX%\Library'

[feature.cu13.system-requirements]
cuda = "13"
[feature.cu12.dependencies]
cuda-version = "12.*"

[feature.cu13.dependencies]
# TODO: make cuda-version a build-variant
cuda-version = "13.2.*"

[environments]
default = { features = ["cu13", "test", "cython-tests"] }
cu13 = { features = ["cu13", "test", "cython-tests"] }
default = { features = ["test", "cython-tests"], solve-group = "default" }
cu13 = { features = ["cu13", "test", "cython-tests"], solve-group = "cu13" }
cu12 = { features = ["cu12", "test", "cython-tests"], solve-group = "cu12" }

# TODO: check if these can be extracted from pyproject.toml
[package]
name = "cuda-bindings"
version = "13.1.0"
version = "13.2.0"

[package.build]
backend = { name = "pixi-build-python", version = "*" }
Expand Down Expand Up @@ -92,6 +94,7 @@ CUDA_HOME = '%PREFIX%\Library'

[package.host-dependencies]
python = "*"
cuda-version = "*"
setuptools = ">=80"
setuptools-scm = ">=8"
cython = ">=3.2,<3.3"
Expand All @@ -115,11 +118,12 @@ cuda-crt-dev_win-64 = "*"

[package.run-dependencies]
python = "*"
cuda-version = "*"
cuda-pathfinder = { path = "../cuda_pathfinder" }
libnvjitlink = "*"
cuda-nvrtc = "*"
cuda-nvvm = "*"
libnvfatbin = "*"
libnvfatbin = "*"

[package.target.linux.run-dependencies]
libcufile = "*"
Expand Down
2 changes: 1 addition & 1 deletion cuda_bindings/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ classifiers = [
"Environment :: GPU :: NVIDIA CUDA",
]
dynamic = ["version", "readme"]
dependencies = ["cuda-pathfinder ~=1.1"]
dependencies = ["cuda-pathfinder >=1.4.2"]

[project.optional-dependencies]
all = [
Expand Down
Loading
Loading