You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reduce README/docs duplication by replacing detailed installation,
versioning, and build-from-source sections with links to the
comprehensive docs pages that already cover this content.
Add CITATION.cff so GitHub renders a "Cite this repository" button,
replacing inline BibTeX blocks in README.md and docs/index.rst.
Fix broken documentation URLs in context.py, build_dll.py, and
installation.rst that pointed to non-existent paths (missing
user_guide/ prefix) or to README anchors instead of the docs site.
Signed-off-by: Eric Shi <ershi@nvidia.com>
This ensures the index is automatically used for `pip` commands, avoiding the need to specify it explicitly.
72
-
73
-
### CUDA Requirements
74
-
75
-
* Warp packages built with CUDA Toolkit 12.x require NVIDIA driver 525 or newer.
76
-
* Warp packages built with CUDA Toolkit 13.x require NVIDIA driver 580 or newer.
77
-
78
-
This applies to pre-built packages distributed on PyPI and GitHub and also when building Warp from source.
79
-
80
-
Note that building Warp with the `--quick` flag changes the driver requirements. The quick build skips CUDA backward compatibility, so the minimum required driver is determined by the CUDA Toolkit version. Refer to the [latest CUDA Toolkit release notes](https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html) to find the minimum required driver for different CUDA Toolkit versions (e.g., [this table from CUDA Toolkit 12.6](https://docs.nvidia.com/cuda/archive/12.6.0/cuda-toolkit-release-notes/index.html#id5)).
81
-
82
-
Warp checks the installed driver during initialization and will report a warning if the driver is not suitable, e.g.:
83
-
84
-
```text
85
-
Warp UserWarning:
86
-
Insufficient CUDA driver version.
87
-
The minimum required CUDA driver version is 12.0, but the installed CUDA driver version is 11.8.
88
-
Visit https://github.com/NVIDIA/warp/blob/main/README.md#installing for guidance.
89
-
```
90
-
91
-
This will make CUDA devices unavailable, but the CPU can still be used.
92
-
93
-
To remedy the situation there are a few options:
94
-
95
-
* Update the driver.
96
-
* Install a compatible pre-built Warp package.
97
-
* Build Warp from source using a CUDA Toolkit that's compatible with the installed driver.
39
+
For nightly builds, conda, CUDA 13 builds, building from source, and CUDA driver requirements, see the
0 commit comments