Add support for CUDA 11.2 (#9178)
Signed-off-by: Samuel Audet <samuel.audet@gmail.com> Co-authored-by: Samuel Audet <samuel.audet@gmail.com>master
parent
5bd386a4f9
commit
bcfe641b26
|
@ -26,7 +26,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
VALID_VERSIONS=( 9.2 10.0 10.1 10.2 11.0 11.1 )
|
||||
VALID_VERSIONS=( 9.2 10.0 10.1 10.2 11.0 11.1 11.2 )
|
||||
|
||||
usage() {
|
||||
echo "Usage: $(basename $0) [-h|--help] <cuda version to be used>
|
||||
|
@ -53,6 +53,10 @@ check_cuda_version() {
|
|||
check_cuda_version "$VERSION"
|
||||
|
||||
case $VERSION in
|
||||
11.2)
|
||||
VERSION2="8.1"
|
||||
VERSION3="1.5.5-SNAPSHOT"
|
||||
;;
|
||||
11.1)
|
||||
VERSION2="8.0"
|
||||
VERSION3="1.5.5-SNAPSHOT"
|
||||
|
|
Loading…
Reference in New Issue