From 474b436aa44e32eb7bb55d44351b3bfa84312d41 Mon Sep 17 00:00:00 2001 From: brandon-b-miller Date: Thu, 7 Mar 2024 09:23:58 -0800 Subject: [PATCH] add cuda 12.4 --- 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 6d00fd397df..494b48b3cfd 100644 --- a/python/cudf/cudf/utils/_numba.py +++ b/python/cudf/cudf/utils/_numba.py @@ -181,6 +181,7 @@ def _get_cuda_version_from_ptx_file(path): "8.1": (12, 1), "8.2": (12, 2), "8.3": (12, 3), + "8.4": (12, 4), } cuda_ver = ver_map.get(version)