Skip to content

Commit

Permalink
Merge branch 'branch-24.08' into branch-24.10-merge-branch-24.08
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Jul 26, 2024
2 parents dc05a01 + cd762b4 commit f88a242
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cpp/cmake/thirdparty/get_thread_pool.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function(find_and_configure_thread_pool)
include(${rapids-cmake-dir}/cpm/bs_thread_pool.cmake)

# Find or install thread-pool
rapids_cpm_bs_thread_pool(BUILD_EXPORT_SET cudf-exports INSTALL_EXPORT_SET cudf-exports)
rapids_cpm_bs_thread_pool()

endfunction()

Expand Down
16 changes: 9 additions & 7 deletions python/cudf/cudf/pandas/_wrappers/pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
)

import cudf
import cudf.core._compat

from ..annotation import nvtx
from ..fast_slow_proxy import (
Expand Down Expand Up @@ -556,13 +557,14 @@ def Index__setattr__(self, name, value):
},
)

ArrowStringArrayNumpySemantics = make_final_proxy_type(
"ArrowStringArrayNumpySemantics",
_Unusable,
pd.core.arrays.string_arrow.ArrowStringArrayNumpySemantics,
fast_to_slow=_Unusable(),
slow_to_fast=_Unusable(),
)
if cudf.core._compat.PANDAS_GE_210:
ArrowStringArrayNumpySemantics = make_final_proxy_type(
"ArrowStringArrayNumpySemantics",
_Unusable,
pd.core.arrays.string_arrow.ArrowStringArrayNumpySemantics,
fast_to_slow=_Unusable(),
slow_to_fast=_Unusable(),
)

ArrowStringArray = make_final_proxy_type(
"ArrowStringArray",
Expand Down

0 comments on commit f88a242

Please sign in to comment.