Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[submodule-sync] bot-submodule-sync-branch-24.12 to branch-24.12 [skip ci] [bot] #2438

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion thirdparty/cudf
Submodule cudf updated 70 files
+17 −3 .github/workflows/pr.yaml
+9 −7 build.sh
+50 −14 ci/cudf_pandas_scripts/pandas-tests/job-summary.py
+2 −2 ci/cudf_pandas_scripts/run_tests.sh
+4 −3 ci/release/update-version.sh
+1 −1 ci/run_cudf_polars_polars_tests.sh
+2 −3 ci/test_cudf_polars_polars_tests.sh
+2 −2 ci/test_python_common.sh
+1 −1 ci/test_python_cudf.sh
+1 −1 ci/test_python_other.sh
+1 −4 ci/test_wheel_cudf_polars.sh
+1 −0 cpp/CMakeLists.txt
+5 −0 cpp/benchmarks/CMakeLists.txt
+123 −0 cpp/benchmarks/quantiles/tdigest.cu
+304 −0 cpp/src/io/json/column_tree_construction.cu
+26 −22 cpp/src/io/json/json_column.cu
+56 −6 cpp/src/io/json/nested_json.hpp
+104 −88 cpp/src/quantiles/tdigest/tdigest_aggregation.cu
+1 −0 cpp/tests/CMakeLists.txt
+370 −0 cpp/tests/io/json/json_tree_csr.cu
+33 −5 dependencies.yaml
+6 −0 docs/cudf/source/user_guide/api_docs/pylibcudf/strings/findall.rst
+1 −0 docs/cudf/source/user_guide/api_docs/pylibcudf/strings/index.rst
+1 −1 docs/dask_cudf/source/best_practices.rst
+12 −0 java/src/main/java/ai/rapids/cudf/JSONOptions.java
+17 −0 java/src/main/java/ai/rapids/cudf/Table.java
+9 −3 java/src/main/native/src/TableJni.cpp
+10 −25 python/cudf/cudf/_lib/strings/findall.pyx
+9 −5 python/cudf/cudf/core/frame.py
+10 −22 python/cudf/cudf/core/indexed_frame.py
+10 −0 python/cudf/cudf/pandas/fast_slow_proxy.py
+12 −14 python/cudf/cudf/tests/test_array_function.py
+2 −1 python/cudf/cudf/tests/test_avro_reader_fastavro_integration.py
+11 −0 python/cudf/cudf/tests/test_dataframe.py
+7 −0 python/cudf/cudf/tests/test_groupby.py
+15 −1 python/cudf/cudf_pandas_tests/test_cudf_pandas.py
+100 −0 python/cudf/cudf_pandas_tests/test_cudf_pandas_no_fallback.py
+5 −3 python/cudf_polars/cudf_polars/__init__.py
+0 −8 python/cudf_polars/cudf_polars/dsl/translate.py
+9 −5 python/cudf_polars/cudf_polars/testing/asserts.py
+4 −0 python/cudf_polars/cudf_polars/testing/plugin.py
+8 −8 python/cudf_polars/cudf_polars/utils/versions.py
+1 −1 python/cudf_polars/pyproject.toml
+5 −1 python/cudf_polars/tests/test_groupby.py
+15 −20 python/cudf_polars/tests/testing/test_asserts.py
+67 −24 python/dask_cudf/dask_cudf/expr/_collection.py
+15 −1 python/dask_cudf/dask_cudf/expr/_expr.py
+22 −7 python/dask_cudf/dask_cudf/tests/test_core.py
+1 −1 python/dask_cudf/dask_cudf/tests/test_reductions.py
+1 −1 python/pylibcudf/pylibcudf/binaryop.pyx
+18 −0 python/pylibcudf/pylibcudf/column_factories.pyx
+1 −1 python/pylibcudf/pylibcudf/groupby.pyx
+2 −0 python/pylibcudf/pylibcudf/io/avro.pyx
+4 −0 python/pylibcudf/pylibcudf/io/parquet.pyx
+2 −0 python/pylibcudf/pylibcudf/labeling.pyx
+2 −2 python/pylibcudf/pylibcudf/libcudf/strings/findall.pxd
+12 −0 python/pylibcudf/pylibcudf/lists.pyx
+2 −0 python/pylibcudf/pylibcudf/merge.pyx
+4 −0 python/pylibcudf/pylibcudf/quantiles.pyx
+4 −0 python/pylibcudf/pylibcudf/reshape.pyx
+6 −0 python/pylibcudf/pylibcudf/search.pyx
+20 −0 python/pylibcudf/pylibcudf/sorting.pyx
+18 −0 python/pylibcudf/pylibcudf/stream_compaction.pyx
+2 −2 python/pylibcudf/pylibcudf/strings/CMakeLists.txt
+1 −0 python/pylibcudf/pylibcudf/strings/__init__.pxd
+1 −0 python/pylibcudf/pylibcudf/strings/__init__.py
+7 −0 python/pylibcudf/pylibcudf/strings/findall.pxd
+40 −0 python/pylibcudf/pylibcudf/strings/findall.pyx
+23 −0 python/pylibcudf/pylibcudf/tests/test_string_findall.py
+2 −0 python/pylibcudf/pylibcudf/transform.pyx
2 changes: 1 addition & 1 deletion thirdparty/cudf-pins/rapids-cmake.sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3815fab6439e911530a5e0338d1fa564b6d3443b
2413be67c97acf57a651481467815036570d11ee
8 changes: 4 additions & 4 deletions thirdparty/cudf-pins/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
{
"always_download" : true,
"git_shallow" : false,
"git_tag" : "42e0d727e4044f7941a62e97d8f68fd14c24d02f",
"git_tag" : "638d53dfbecb64c83bcd730becff8640e0c8e1e3",
"git_url" : "https://github.com/rapidsai/kvikio.git",
"version" : "24.10"
"version" : "24.12"
},
"bs_thread_pool" :
{
Expand Down Expand Up @@ -141,9 +141,9 @@
{
"always_download" : true,
"git_shallow" : false,
"git_tag" : "99e237ef6a42321a6bbd28b7aab9e4cc4105e6a3",
"git_tag" : "163db70d4247314aaa9fe6cdbacf03f8d65954ff",
"git_url" : "https://github.com/rapidsai/rmm.git",
"version" : "24.10"
"version" : "24.12"
},
"spdlog" :
{
Expand Down
Loading