From 5e8b6042f11598ad41a47c58aff64e10b4111d25 Mon Sep 17 00:00:00 2001 From: brandon-b-miller Date: Fri, 17 Nov 2023 07:13:31 -0800 Subject: [PATCH] add cuda 12.3 --- python/cudf/cudf/utils/_numba.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/cudf/cudf/utils/_numba.py b/python/cudf/cudf/utils/_numba.py index b4ed1da0f60..426c8aec0f8 100644 --- a/python/cudf/cudf/utils/_numba.py +++ b/python/cudf/cudf/utils/_numba.py @@ -175,6 +175,7 @@ def _get_cuda_version_from_ptx_file(path): "8.0": (12, 0), "8.1": (12, 1), "8.2": (12, 2), + "8.3": (12, 3), } cuda_ver = ver_map.get(version)