From a2956b77eda4bb21792e674a64816267f9515e71 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Fri, 19 Jul 2024 22:56:22 +0000 Subject: [PATCH] Add missing pxd --- python/cudf/cudf/_lib/pylibcudf/experimental.pxd | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 python/cudf/cudf/_lib/pylibcudf/experimental.pxd diff --git a/python/cudf/cudf/_lib/pylibcudf/experimental.pxd b/python/cudf/cudf/_lib/pylibcudf/experimental.pxd new file mode 100644 index 00000000000..107c91c8365 --- /dev/null +++ b/python/cudf/cudf/_lib/pylibcudf/experimental.pxd @@ -0,0 +1,10 @@ +# Copyright (c) 2024, NVIDIA CORPORATION. + +from libcpp cimport bool + + +cpdef enable_prefetching(str key) + +cpdef disable_prefetching(str key) + +cpdef prefetch_debugging(bool enable)