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
Copy file name to clipboardExpand all lines: src/configure
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -368,11 +368,16 @@ Either your CUDA is too new or too old."
368
368
MIN_UNSUPPORTED_GCC_VER_NUM=80000;
369
369
CUSOLVER=true
370
370
;;
371
-
10_1 | 10_* | 11_*)
371
+
10_1 | 10_*)
372
372
MIN_UNSUPPORTED_GCC_VER="9.0"
373
373
MIN_UNSUPPORTED_GCC_VER_NUM=90000;
374
374
CUSOLVER=true
375
375
;;
376
+
11_*)
377
+
MIN_UNSUPPORTED_GCC_VER="10.0"
378
+
MIN_UNSUPPORTED_GCC_VER_NUM=100000;
379
+
CUSOLVER=true
380
+
;;
376
381
*)
377
382
echo"Unsupported CUDA_VERSION (CUDA_VERSION=$CUDA_VERSION), please report it to Kaldi mailing list, together with 'nvcc -h' or 'ptxas -h' which lists allowed -gencode values...";exit 1;
378
383
;;
@@ -392,7 +397,8 @@ Either your CUDA is too new or too old."
*) echo"Unsupported CUDA_VERSION (CUDA_VERSION=$CUDA_VERSION), please report it to Kaldi mailing list, together with 'nvcc -h' or 'ptxas -h' which lists allowed -gencode values...";exit 1 ;;
0 commit comments