Skip to content

Commit

Permalink
Allow other cuda versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dfalbel committed Aug 11, 2023
1 parent ad37634 commit 98298ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/install.R
Original file line number Diff line number Diff line change
Expand Up @@ -457,12 +457,12 @@ cuda_version_windows <- function() {
}

check_supported_cuda_version_windows <- function(version) {
supported_versions <- c("11.7")
supported_versions <- c("11.7", "11.8")
check_supported_version(version, supported_versions)
}

check_supported_cuda_version_linux <- function(version) {
supported_versions <- c("11.7", "11.6")
supported_versions <- c("11.7", "11.8")
check_supported_version(version, supported_versions)
}

Expand Down

0 comments on commit 98298ed

Please sign in to comment.