Skip to content
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

Add cuda 11.7 and 11.8 to minimum driver version list #108

Merged
merged 3 commits into from
Dec 23, 2022
Merged
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
8 changes: 6 additions & 2 deletions light_the_torch/_cb.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ def _detect_nvidia_driver_version() -> Optional[Version]:
# Table 3 from https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html
_MINIMUM_DRIVER_VERSIONS = {
"Linux": {
Version("11.6"): Version("510.39.01"),
Version("11.8"): Version("520.61.05"),
Version("11.7"): Version("515.48.07"),
pmeier marked this conversation as resolved.
Show resolved Hide resolved
Version("11.6"): Version("510.47.03"),
Version("11.5"): Version("495.29.05"),
Version("11.4"): Version("470.82.01"),
Version("11.3"): Version("465.19.01"),
Expand All @@ -166,7 +168,9 @@ def _detect_nvidia_driver_version() -> Optional[Version]:
Version("8.0"): Version("375.26"),
},
"Windows": {
Version("11.6"): Version("511.23"),
Version("11.8"): Version("520.06"),
Version("11.7"): Version("516.31"),
pmeier marked this conversation as resolved.
Show resolved Hide resolved
Version("11.6"): Version("511.65"),
Version("11.5"): Version("496.13"),
Version("11.4"): Version("472.50"),
Version("11.3"): Version("465.89"),
Expand Down