From 1c2efac7c85923bb5672c4927836647b338b9e84 Mon Sep 17 00:00:00 2001 From: Rob Nertney Date: Tue, 7 Feb 2023 19:06:53 +0000 Subject: [PATCH] Adding SM number for Ada Architecture --- Common/helper_cuda.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Common/helper_cuda.h b/Common/helper_cuda.h index f6bea97a..22d8eeaa 100644 --- a/Common/helper_cuda.h +++ b/Common/helper_cuda.h @@ -666,6 +666,7 @@ inline int _ConvertSMVer2Cores(int major, int minor) { {0x80, 64}, {0x86, 128}, {0x87, 128}, + {0x89, 128}, {0x90, 128}, {-1, -1}}; @@ -714,6 +715,7 @@ inline const char* _ConvertSMVer2ArchName(int major, int minor) { {0x80, "Ampere"}, {0x86, "Ampere"}, {0x87, "Ampere"}, + {0x89, "Ada"}, {0x90, "Hopper"}, {-1, "Graphics Device"}};