Skip to content

Commit

Permalink
Auto-merge use branch-24.12 versions
Browse files Browse the repository at this point in the history
Signed-off-by: spark-rapids automation <[email protected]>
  • Loading branch information
nvauto committed Sep 26, 2024
1 parent 9dedc07 commit 0d54865
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion thirdparty/cudf
Submodule cudf updated 92 files
+3 −3 .devcontainer/cuda11.8-conda/devcontainer.json
+3 −3 .devcontainer/cuda11.8-pip/devcontainer.json
+3 −3 .devcontainer/cuda12.5-conda/devcontainer.json
+3 −3 .devcontainer/cuda12.5-pip/devcontainer.json
+14 −14 .github/workflows/build.yaml
+1 −1 .github/workflows/pandas-tests.yaml
+25 −25 .github/workflows/pr.yaml
+3 −3 .github/workflows/pr_issue_status_automation.yml
+12 −12 .github/workflows/test.yaml
+1 −1 README.md
+1 −1 VERSION
+1 −0 ci/release/update-version.sh
+1 −1 ci/test_cudf_polars_polars_tests.sh
+1 −1 ci/test_wheel_cudf_polars.sh
+5 −6 conda/environments/all_cuda-118_arch-x86_64.yaml
+5 −6 conda/environments/all_cuda-125_arch-x86_64.yaml
+1 −1 cpp/examples/versions.cmake
+0 −36 cpp/include/cudf/io/json.hpp
+90 −686 cpp/src/io/json/host_tree_algorithms.cu
+14 −32 cpp/src/io/json/json_column.cu
+9 −144 cpp/src/io/json/json_tree.cu
+5 −24 cpp/src/io/json/nested_json.hpp
+0 −53 cpp/tests/io/json/json_test.cpp
+0 −1 cpp/tests/io/json/json_tree.cpp
+0 −1 cpp/tests/io/json/json_tree_csr.cu
+24 −25 dependencies.yaml
+0 −2 docs/cudf/source/user_guide/api_docs/pylibcudf/index.rst
+0 −1 docs/cudf/source/user_guide/api_docs/pylibcudf/io/index.rst
+0 −6 docs/cudf/source/user_guide/api_docs/pylibcudf/io/timezone.rst
+0 −6 docs/cudf/source/user_guide/api_docs/pylibcudf/partitioning.rst
+0 −6 docs/cudf/source/user_guide/api_docs/pylibcudf/transpose.rst
+1 −10 docs/dask_cudf/source/best_practices.rst
+3 −4 docs/dask_cudf/source/index.rst
+2 −2 java/ci/README.md
+1 −1 java/pom.xml
+0 −15 java/src/main/java/ai/rapids/cudf/JSONOptions.java
+0 −9 java/src/main/java/ai/rapids/cudf/Table.java
+2 −10 java/src/main/native/src/TableJni.cpp
+26 −9 python/cudf/cudf/_lib/hash.pyx
+0 −4 python/cudf/cudf/_lib/io/utils.pxd
+252 −61 python/cudf/cudf/_lib/orc.pyx
+28 −7 python/cudf/cudf/_lib/partitioning.pyx
+32 −14 python/cudf/cudf/_lib/strings/attributes.pyx
+23 −4 python/cudf/cudf/_lib/timezone.pyx
+22 −8 python/cudf/cudf/_lib/transpose.pyx
+1 −1 python/cudf/cudf/_lib/utils.pxd
+3 −5 python/cudf/cudf/_lib/utils.pyx
+8 −3 python/cudf/cudf/io/orc.py
+17 −17 python/cudf/cudf/tests/test_orc.py
+2 −2 python/cudf/cudf/utils/ioutils.py
+3 −3 python/cudf/cudf_pandas_tests/third_party_integration_tests/dependencies.yaml
+7 −7 python/cudf/pyproject.toml
+1 −1 python/cudf_kafka/pyproject.toml
+1 −1 python/cudf_polars/docs/overview.md
+1 −1 python/cudf_polars/pyproject.toml
+2 −2 python/custreamz/pyproject.toml
+6 −136 python/dask_cudf/dask_cudf/backends.py
+0 −89 python/dask_cudf/dask_cudf/expr/_expr.py
+12 −29 python/dask_cudf/dask_cudf/io/tests/test_s3.py
+3 −3 python/dask_cudf/pyproject.toml
+2 −2 python/libcudf/pyproject.toml
+0 −2 python/pylibcudf/pylibcudf/CMakeLists.txt
+0 −4 python/pylibcudf/pylibcudf/__init__.pxd
+0 −4 python/pylibcudf/pylibcudf/__init__.py
+1 −3 python/pylibcudf/pylibcudf/io/CMakeLists.txt
+1 −1 python/pylibcudf/pylibcudf/io/__init__.pxd
+1 −1 python/pylibcudf/pylibcudf/io/__init__.py
+0 −50 python/pylibcudf/pylibcudf/io/orc.pxd
+0 −302 python/pylibcudf/pylibcudf/io/orc.pyx
+0 −6 python/pylibcudf/pylibcudf/io/timezone.pxd
+0 −43 python/pylibcudf/pylibcudf/io/timezone.pyx
+0 −1 python/pylibcudf/pylibcudf/io/types.pyx
+0 −1 python/pylibcudf/pylibcudf/libcudf/io/orc.pxd
+1 −1 python/pylibcudf/pylibcudf/libcudf/io/orc_metadata.pxd
+0 −7 python/pylibcudf/pylibcudf/libcudf/partitioning.pxd
+0 −19 python/pylibcudf/pylibcudf/partitioning.pxd
+0 −120 python/pylibcudf/pylibcudf/partitioning.pyx
+2 −15 python/pylibcudf/pylibcudf/strings/CMakeLists.txt
+0 −19 python/pylibcudf/pylibcudf/strings/__init__.pxd
+0 −19 python/pylibcudf/pylibcudf/strings/__init__.py
+0 −10 python/pylibcudf/pylibcudf/strings/attributes.pxd
+0 −76 python/pylibcudf/pylibcudf/strings/attributes.pyx
+10 −27 python/pylibcudf/pylibcudf/tests/common/utils.py
+2 −6 python/pylibcudf/pylibcudf/tests/io/test_csv.py
+0 −53 python/pylibcudf/pylibcudf/tests/io/test_orc.py
+0 −16 python/pylibcudf/pylibcudf/tests/io/test_timezone.py
+0 −55 python/pylibcudf/pylibcudf/tests/test_partitioning.py
+0 −32 python/pylibcudf/pylibcudf/tests/test_string_attributes.py
+0 −32 python/pylibcudf/pylibcudf/tests/test_transpose.py
+0 −5 python/pylibcudf/pylibcudf/transpose.pxd
+0 −38 python/pylibcudf/pylibcudf/transpose.pyx
+5 −5 python/pylibcudf/pyproject.toml
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" : "44b3f97a20db697adbcde2c222a2174561c12ddd",
"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" : "ab6e2961d7b8f833f688775e941c4e2ed2bd4d8a",
"git_tag" : "163db70d4247314aaa9fe6cdbacf03f8d65954ff",
"git_url" : "https://github.com/rapidsai/rmm.git",
"version" : "24.10"
"version" : "24.12"
},
"spdlog" :
{
Expand Down

0 comments on commit 0d54865

Please sign in to comment.