Skip to content

Commit

Permalink
[submodule-sync] bot-submodule-sync-branch-23.06 to branch-23.06 [ski…
Browse files Browse the repository at this point in the history
…p ci] [bot] (#1167)

* Update submodule cudf to 56150d9468862bce6c02be290f87d8d992986ceb

Signed-off-by: spark-rapids automation <[email protected]>

* Update submodule cudf to 132540e869e6866bcbfc749927e993989f83ecd2

Signed-off-by: spark-rapids automation <[email protected]>

* Update submodule cudf to 19554a1429c8516f73e91065ca03ff97ffff853f

Signed-off-by: spark-rapids automation <[email protected]>

* Update submodule cudf to c4f471d43942f4f2777d09dce9912b019650c926

Signed-off-by: spark-rapids automation <[email protected]>

* Update submodule cudf to 03f0c0cbd16a8681a5c723848858cb2af37d2a37

Signed-off-by: spark-rapids automation <[email protected]>

* Update submodule cudf to 85699df8fac14358a83aa319dce9aa1400ae4f1e

Signed-off-by: spark-rapids automation <[email protected]>

---------

Signed-off-by: spark-rapids automation <[email protected]>
  • Loading branch information
nvauto authored May 26, 2023
1 parent e6e1634 commit 64dd1e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/cudf
Submodule cudf updated 93 files
+1 −1 conda/environments/all_cuda-118_arch-x86_64.yaml
+1 −1 conda/recipes/cudf/meta.yaml
+4 −5 cpp/benchmarks/CMakeLists.txt
+1 −1 cpp/benchmarks/common/generate_input.cu
+1 −9 cpp/benchmarks/string/slice.cpp
+30 −39 cpp/benchmarks/text/normalize.cpp
+0 −66 cpp/benchmarks/text/normalize_spaces.cpp
+24 −35 cpp/benchmarks/text/replace.cpp
+45 −63 cpp/benchmarks/text/tokenize.cpp
+3 −2 cpp/include/cudf/column/column.hpp
+5 −21 cpp/include/cudf/column/column_view.hpp
+0 −5 cpp/include/cudf/detail/copy_range.cuh
+0 −2 cpp/include/cudf/detail/join.hpp
+1 −1 cpp/include/cudf/detail/sizes_to_offsets_iterator.cuh
+3 −5 cpp/include/cudf/filling.hpp
+1 −4 cpp/include/cudf/fixed_point/fixed_point.hpp
+1 −4 cpp/include/cudf/fixed_point/temporary.hpp
+4 −8 cpp/include/cudf/join.hpp
+1 −1 cpp/include/cudf/reduction/detail/reduction_operators.cuh
+3 −2 cpp/include/cudf/strings/detail/gather.cuh
+2 −2 cpp/include/cudf/strings/detail/strings_children.cuh
+2 −5 cpp/include/cudf/strings/repeat_strings.hpp
+6 −2 cpp/include/cudf/strings/slice.hpp
+0 −8 cpp/include/cudf/types.hpp
+1 −0 cpp/include/nvtext/minhash.hpp
+2 −2 cpp/include/nvtext/subword_tokenize.hpp
+1 −24 cpp/src/column/column.cu
+1 −11 cpp/src/column/column_view.cpp
+5 −7 cpp/src/copying/concatenate.cu
+2 −1 cpp/src/copying/gather.cu
+2 −1 cpp/src/copying/scatter.cu
+8 −6 cpp/src/filling/repeat.cu
+26 −12 cpp/src/groupby/sort/group_std.cu
+7 −5 cpp/src/interop/dlpack.cpp
+10 −13 cpp/src/io/parquet/writer_impl.cu
+2 −1 cpp/src/io/utilities/row_selection.cpp
+1 −2 cpp/src/io/utilities/row_selection.hpp
+0 −4 cpp/src/join/hash_join.cu
+0 −1 cpp/src/join/join_common_utils.hpp
+2 −2 cpp/src/lists/sequences.cu
+2 −2 cpp/src/strings/case.cu
+4 −2 cpp/src/strings/copying/concatenate.cu
+2 −2 cpp/src/strings/regex/utilities.cuh
+2 −1 cpp/src/strings/repeat_strings.cu
+9 −8 cpp/src/strings/replace/backref_re.cuh
+4 −5 cpp/src/text/minhash.cu
+1 −1 cpp/src/text/ngrams_tokenize.cu
+3 −2 cpp/src/text/normalize.cu
+5 −3 cpp/src/text/subword/subword_tokenize.cu
+3 −0 cpp/src/transform/compute_column.cu
+1 −1 cpp/tests/CMakeLists.txt
+2 −2 cpp/tests/copying/concatenate_tests.cpp
+4 −14 cpp/tests/copying/utility_tests.cpp
+19 −0 cpp/tests/filling/repeat_tests.cpp
+30 −0 cpp/tests/groupby/var_tests.cpp
+2 −2 cpp/tests/interop/dlpack_test.cpp
+1 −1 cpp/tests/io/row_selection_test.cpp
+1 −1 cpp/tests/strings/array_tests.cpp
+1 −1 cpp/tests/strings/repeat_strings_tests.cpp
+15 −0 cpp/tests/strings/replace_regex_tests.cpp
+2 −254 cpp/tests/strings/slice_tests.cpp
+15 −176 cpp/tests/table/experimental_row_operator_tests.cu
+214 −0 cpp/tests/table/row_operator_tests_utilities.cu
+45 −0 cpp/tests/table/row_operator_tests_utilities.hpp
+2 −4 cpp/tests/text/minhash_tests.cpp
+1 −1 cpp/tests/text/subword_tests.cpp
+2 −2 dependencies.yaml
+6 −0 java/src/main/native/src/row_conversion.cu
+1 −1 python/cudf/cudf/_lib/transform.pyx
+6 −4 python/cudf/cudf/core/column/numerical.py
+4 −1 python/cudf/cudf/core/column/string.py
+32 −3 python/cudf/cudf/core/column_accessor.py
+2 −1 python/cudf/cudf/core/indexed_frame.py
+4 −0 python/cudf/cudf/core/single_column_frame.py
+2 −2 python/cudf/cudf/tests/test_column.py
+4 −2 python/cudf/cudf/tests/test_csv.py
+4 −8 python/cudf/cudf/tests/test_feather.py
+58 −2 python/cudf/cudf/tests/test_indexing.py
+4 −8 python/cudf/cudf/tests/test_json.py
+46 −0 python/cudf/cudf/tests/test_numba_import.py
+5 −1 python/cudf/cudf/tests/test_numerical.py
+14 −24 python/cudf/cudf/tests/test_onehot.py
+8 −16 python/cudf/cudf/tests/test_parquet.py
+6 −6 python/cudf/cudf/tests/test_rank.py
+10 −3 python/cudf/cudf/tests/test_replace.py
+2 −2 python/cudf/cudf/tests/test_sparse_df.py
+29 −0 python/cudf/cudf/tests/test_text.py
+3 −2 python/cudf/cudf/tests/test_unaops.py
+25 −5 python/cudf/cudf/utils/_numba.py
+2 −1 python/cudf/cudf/utils/queryutils.py
+2 −2 python/cudf/pyproject.toml
+1 −1 python/cudf_kafka/pyproject.toml
+1 −1 python/dask_cudf/pyproject.toml

0 comments on commit 64dd1e5

Please sign in to comment.