From 259e58de1e9b1efb174bd08430adda3ee42ccea9 Mon Sep 17 00:00:00 2001 From: Wesley Maxey Date: Mon, 12 Sep 2022 23:48:49 -0700 Subject: [PATCH] Remove sm_35 from tests, it offers no coverage and we don't test on this architecture anyways --- .upstream-tests/utils/nvidia/linux/perform_tests.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.upstream-tests/utils/nvidia/linux/perform_tests.bash b/.upstream-tests/utils/nvidia/linux/perform_tests.bash index c2bdb1913c..14d0a90efc 100755 --- a/.upstream-tests/utils/nvidia/linux/perform_tests.bash +++ b/.upstream-tests/utils/nvidia/linux/perform_tests.bash @@ -71,7 +71,7 @@ function section_separator { LIBCXX_LOG=$(mktemp) LIBCUDACXX_LOG=$(mktemp) -KNOWN_COMPUTE_ARCHS="35 50 52 53 60 61 62 70 72 75 80 86 87" +KNOWN_COMPUTE_ARCHS="50 52 53 60 61 62 70 72 75 80 86 87" function report_and_exit { # If any of the lines searched for below aren't present in the log files, the @@ -268,7 +268,7 @@ then echo "# DETECTION SM Architecture : Device 0, ${DEVICE_0_COMPUTE_ARCH}" - if (( 35 <= ${DEVICE_0_COMPUTE_ARCH:-0} )) + if (( 50 <= ${DEVICE_0_COMPUTE_ARCH:-0} )) then LIBCUDACXX_COMPUTE_ARCHS=${DEVICE_0_COMPUTE_ARCH} fi