From 96933c965cb26cf5f9dc8360637f8cf5ac97ee67 Mon Sep 17 00:00:00 2001 From: David Wendt Date: Wed, 11 Sep 2024 10:59:23 -0400 Subject: [PATCH] fix memory-resource-ref parameter --- cpp/include/cudf/strings/findall.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/include/cudf/strings/findall.hpp b/cpp/include/cudf/strings/findall.hpp index f64ecee340d..867764b6d9a 100644 --- a/cpp/include/cudf/strings/findall.hpp +++ b/cpp/include/cudf/strings/findall.hpp @@ -93,7 +93,7 @@ std::unique_ptr find_re( strings_column_view const& input, regex_program const& prog, rmm::cuda_stream_view stream = cudf::get_default_stream(), - rmm::device_async_resource_ref mr = rmm::mr::get_current_device_resource()); + rmm::device_async_resource_ref mr = cudf::get_current_device_resource_ref()); /** @} */ // end of doxygen group } // namespace strings