From ad25516f8b47e1f383e18471a8955f5870bc51db Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Thu, 11 Apr 2024 14:24:43 -0700 Subject: [PATCH] add dlpack download back to cudf cmake --- python/cudf/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/cudf/CMakeLists.txt b/python/cudf/CMakeLists.txt index f6c6ed7ee89..c9427e35755 100644 --- a/python/cudf/CMakeLists.txt +++ b/python/cudf/CMakeLists.txt @@ -40,3 +40,7 @@ codegen_protoc(cudf/utils/metadata/orc_column_statistics.proto) if(DEFINED cython_lib_dir) rapids_cython_add_rpath_entries(TARGET cudf PATHS "${cython_lib_dir}") endif() + +# an installed version of libcudf doesn't provide the dlpack headers so we need to download dlpack +# for the interop.pyx +include(../../cpp/cmake/thirdparty/get_dlpack.cmake)