Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/branch-23.10' into parquet_foote…
Browse files Browse the repository at this point in the history
…r_allocator
  • Loading branch information
gerashegalov committed Aug 30, 2023
2 parents 66d43d7 + 833eba4 commit d1c0e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/cudf
Submodule cudf updated 78 files
+4 −0 .github/copy-pr-bot.yaml
+0 −1 .github/ops-bot.yaml
+4 −0 cpp/benchmarks/binaryop/compiled_binaryop.cpp
+7 −0 cpp/include/cudf/concatenate.hpp
+16 −1 cpp/include/cudf/filling.hpp
+4 −6 cpp/include/cudf_test/column_wrapper.hpp
+14 −10 cpp/src/bitmask/null_mask.cu
+6 −3 cpp/src/copying/concatenate.cu
+3 −2 cpp/src/filling/calendrical_month_sequence.cu
+5 −3 cpp/src/filling/fill.cu
+4 −2 cpp/src/filling/repeat.cu
+4 −2 cpp/src/filling/sequence.cu
+38 −47 cpp/src/io/json/json_tree.cu
+12 −4 cpp/src/io/parquet/page_data.cu
+23 −17 cpp/src/io/parquet/page_decode.cuh
+21 −0 cpp/src/io/parquet/page_enc.cu
+37 −32 cpp/src/io/parquet/page_string_decode.cu
+1 −0 cpp/src/io/parquet/parquet_common.hpp
+16 −4 cpp/src/io/parquet/parquet_gpu.hpp
+9 −3 cpp/src/io/parquet/reader_impl.cpp
+17 −12 cpp/src/io/parquet/writer_impl.cu
+15 −8 cpp/src/partitioning/partitioning.cu
+1 −1 cpp/src/quantiles/tdigest/tdigest.cu
+5 −5 cpp/src/strings/attributes.cu
+34 −34 cpp/src/strings/convert/convert_urls.cu
+2 −2 cpp/src/strings/json/json_path.cu
+9 −9 cpp/src/text/normalize.cu
+1 −1 cpp/src/text/replace.cu
+15 −11 cpp/src/text/stemmer.cu
+25 −20 cpp/src/text/subword/data_normalizer.cu
+6 −4 cpp/src/text/subword/detail/data_normalizer.hpp
+6 −3 cpp/src/text/subword/detail/tokenizer_utils.cuh
+2 −2 cpp/src/text/subword/detail/wordpiece_tokenizer.hpp
+13 −8 cpp/src/text/subword/subword_tokenize.cu
+16 −10 cpp/src/text/subword/wordpiece_tokenizer.cu
+23 −21 cpp/src/text/tokenize.cu
+2 −2 cpp/src/text/utilities/tokenize_ops.cuh
+6 −9 cpp/src/transform/jit/kernel.cu
+2 −0 cpp/tests/CMakeLists.txt
+70 −0 cpp/tests/io/parquet_test.cpp
+51 −0 cpp/tests/streams/concatenate_test.cpp
+76 −0 cpp/tests/streams/filling_test.cpp
+55 −11 docs/cudf/source/developer_guide/pylibcudf.md
+1 −0 python/cudf/cudf/_lib/CMakeLists.txt
+23 −0 python/cudf/cudf/_lib/cpp/CMakeLists.txt
+3 −3 python/cudf/cudf/_lib/cpp/copying.pxd
+0 −0 python/cudf/cudf/_lib/cpp/copying.pyx
+35 −30 python/cudf/cudf/_lib/cpp/types.pxd
+0 −0 python/cudf/cudf/_lib/cpp/types.pyx
+3 −2 python/cudf/cudf/_lib/pylibcudf/__init__.pxd
+3 −2 python/cudf/cudf/_lib/pylibcudf/column.pyx
+2 −18 python/cudf/cudf/_lib/pylibcudf/copying.pxd
+8 −12 python/cudf/cudf/_lib/pylibcudf/copying.pyx
+2 −53 python/cudf/cudf/_lib/pylibcudf/types.pxd
+7 −9 python/cudf/cudf/_lib/pylibcudf/types.pyx
+28 −28 python/cudf/cudf/_lib/scalar.pyx
+6 −6 python/cudf/cudf/_lib/strings/convert/convert_fixed_point.pyx
+1 −0 python/cudf/cudf/_lib/types.pyx
+4 −1 python/cudf/cudf/core/algorithms.py
+1 −1 python/cudf/cudf/core/column/categorical.py
+11 −5 python/cudf/cudf/core/column/column.py
+268 −40 python/cudf/cudf/core/dataframe.py
+4 −1 python/cudf/cudf/core/dtypes.py
+12 −0 python/cudf/cudf/core/groupby/groupby.py
+4 −1 python/cudf/cudf/core/index.py
+4 −0 python/cudf/cudf/core/multiindex.py
+2 −0 python/cudf/cudf/core/series.py
+ python/cudf/cudf/tests/data/parquet/fixed_len_byte_array.parquet
+10 −0 python/cudf/cudf/tests/test_categorical.py
+36 −1 python/cudf/cudf/tests/test_factorize.py
+43 −0 python/cudf/cudf/tests/test_groupby.py
+34 −1 python/cudf/cudf/tests/test_interval.py
+11 −0 python/cudf/cudf/tests/test_multiindex.py
+9 −0 python/cudf/cudf/tests/test_parquet.py
+13 −0 python/cudf/cudf/tests/test_repr.py
+95 −0 python/cudf/cudf/tests/test_reshape.py
+9 −0 python/cudf/cudf/tests/test_series.py
+20 −30 python/cudf/udf_cpp/shim.cu

0 comments on commit d1c0e4c

Please sign in to comment.