Skip to content

Commit

Permalink
Auto-merge use submodule in BASE ref
Browse files Browse the repository at this point in the history
Signed-off-by: spark-rapids automation <[email protected]>
  • Loading branch information
nvauto committed Apr 1, 2024
1 parent 7559c88 commit 69e1052
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/cudf
Submodule cudf updated 84 files
+2 −2 .devcontainer/cuda11.8-conda/devcontainer.json
+2 −2 .devcontainer/cuda11.8-pip/devcontainer.json
+2 −2 .devcontainer/cuda12.2-conda/devcontainer.json
+2 −2 .devcontainer/cuda12.2-pip/devcontainer.json
+8 −9 .github/workflows/build.yaml
+19 −20 .github/workflows/pr.yaml
+11 −11 .github/workflows/test.yaml
+0 −12 .pre-commit-config.yaml
+1 −1 CONTRIBUTING.md
+1 −1 README.md
+1 −1 VERSION
+3 −0 ci/build_docs.sh
+1 −1 ci/build_wheel_cudf.sh
+1 −14 ci/cudf_pandas_scripts/pandas-tests/run.sh
+2 −15 ci/cudf_pandas_scripts/run_tests.sh
+8 −0 ci/test_python_cudf.sh
+5 −6 ci/test_python_other.sh
+9 −14 ci/test_wheel_cudf.sh
+7 −20 ci/test_wheel_dask_cudf.sh
+5 −5 conda/environments/all_cuda-118_arch-x86_64.yaml
+5 −5 conda/environments/all_cuda-122_arch-x86_64.yaml
+1 −0 cpp/CMakeLists.txt
+0 −31 cpp/cmake/thirdparty/get_arrow.cmake
+22 −0 cpp/doxygen/developer_guide/DEVELOPER_GUIDE.md
+12 −3 cpp/doxygen/developer_guide/TESTING.md
+1 −1 cpp/examples/fetch_dependencies.cmake
+3 −0 cpp/include/cudf/copying.hpp
+18 −0 cpp/include/cudf/strings/detail/replace.hpp
+3 −2 cpp/src/copying/copy.cpp
+1 −1 cpp/src/copying/copy_range.cu
+10 −1 cpp/src/copying/scatter.cu
+2 −2 cpp/src/io/parquet/decode_fixed.cu
+1 −1 cpp/src/io/parquet/decode_preprocess.cu
+10 −8 cpp/src/io/parquet/page_data.cu
+1 −2 cpp/src/io/parquet/page_data.cuh
+30 −28 cpp/src/io/parquet/page_decode.cuh
+2 −2 cpp/src/io/parquet/page_hdr.cu
+2 −2 cpp/src/io/parquet/page_string_decode.cu
+23 −18 cpp/src/io/parquet/parquet_gpu.hpp
+15 −1 cpp/src/io/parquet/reader_impl.cpp
+21 −28 cpp/src/io/parquet/reader_impl_chunking.cu
+111 −99 cpp/src/io/parquet/reader_impl_helpers.cpp
+2 −2 cpp/src/io/parquet/reader_impl_preprocess.cu
+3 −209 cpp/src/replace/replace.cu
+87 −0 cpp/src/strings/replace/find_replace.cu
+2 −6 cpp/tests/replace/replace_tests.cpp
+16 −16 dependencies.yaml
+0 −2 docs/cudf/source/developer_guide/contributing_guide.md
+1 −1 docs/cudf/source/developer_guide/documentation.md
+66 −0 docs/cudf/source/developer_guide/pylibcudf.md
+6 −0 docs/cudf/source/developer_guide/testing.md
+2 −2 java/ci/README.md
+1 −1 java/pom.xml
+3 −15 pyproject.toml
+21 −21 python/cudf/cudf/_lib/cpp/copying.pxd
+0 −2 python/cudf/cudf/_lib/json.pyx
+0 −2 python/cudf/cudf/_lib/parquet.pyx
+1 −0 python/cudf/cudf/_lib/pylibcudf/column.pxd
+8 −1 python/cudf/cudf/_lib/pylibcudf/column.pyx
+3 −3 python/cudf/cudf/_lib/pylibcudf/copying.pxd
+101 −25 python/cudf/cudf/_lib/pylibcudf/copying.pyx
+1 −0 python/cudf/cudf/_lib/pylibcudf/interop.pyx
+3 −0 python/cudf/cudf/_lib/pylibcudf/table.pxd
+8 −0 python/cudf/cudf/_lib/pylibcudf/table.pyx
+5 −0 python/cudf/cudf/_lib/pylibcudf/types.pyx
+22 −18 python/cudf/cudf/_lib/utils.pyx
+2 −0 python/cudf/cudf/core/column/column.py
+25 −21 python/cudf/cudf/core/dataframe.py
+24 −5 python/cudf/cudf/core/groupby/groupby.py
+3 −1 python/cudf/cudf/core/reshape.py
+111 −0 python/cudf/cudf/pylibcudf_tests/common/utils.py
+31 −0 python/cudf/cudf/pylibcudf_tests/conftest.py
+8 −0 python/cudf/cudf/pylibcudf_tests/pytest.ini
+848 −0 python/cudf/cudf/pylibcudf_tests/test_copying.py
+58 −1 python/cudf/cudf/tests/dataframe/test_io_serialization.py
+28 −2 python/cudf/cudf/tests/test_groupby.py
+11 −3 python/cudf/cudf/tests/test_parquet.py
+1 −0 python/cudf/cudf/utils/ioutils.py
+2 −2 python/cudf/pyproject.toml
+2 −2 python/cudf/udf_cpp/CMakeLists.txt
+2 −2 python/cudf_kafka/pyproject.toml
+3 −3 python/custreamz/pyproject.toml
+4 −1 python/dask_cudf/dask_cudf/accessors.py
+3 −3 python/dask_cudf/pyproject.toml

0 comments on commit 69e1052

Please sign in to comment.