From 14c95700c4875c774a6e2fa936dde0ce1193b225 Mon Sep 17 00:00:00 2001 From: chalsliu <45041955+chalsliu@users.noreply.github.com> Date: Tue, 8 Nov 2022 14:12:01 +0800 Subject: [PATCH] Support cuda 11 with jetson (#47741) --- cmake/cuda.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/cuda.cmake b/cmake/cuda.cmake index 87b943abd0..63dbd0e9db 100644 --- a/cmake/cuda.cmake +++ b/cmake/cuda.cmake @@ -6,6 +6,7 @@ if(WITH_NV_JETSON) add_definitions(-DWITH_NV_JETSON) set(paddle_known_gpu_archs "53 62 72") set(paddle_known_gpu_archs10 "53 62 72") + set(paddle_known_gpu_archs11 "53 62 72") elseif(NEW_RELEASE_ALL) message("Using New Release Strategy - All Arches Packge") add_definitions(-DNEW_RELEASE_ALL) -- GitLab