Skip to content

Commit

Permalink
Merge branch 'branch-22.08' into general_native_parquet
Browse files Browse the repository at this point in the history
  • Loading branch information
revans2 committed Jul 18, 2022
2 parents 74ac2d3 + 753b415 commit 8d5c443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/cudf
Submodule cudf updated 64 files
+7 −36 .pre-commit-config.yaml
+1 −1 conda/environments/cudf_dev_cuda11.5.yml
+5 −5 conda/recipes/cudf/meta.yaml
+4 −4 conda/recipes/cudf_kafka/meta.yaml
+3 −3 conda/recipes/custreamz/meta.yaml
+3 −3 conda/recipes/dask-cudf/meta.yaml
+5 −4 cpp/CMakeLists.txt
+21 −6 cpp/benchmarks/join/join_common.hpp
+32 −0 cpp/include/cudf/detail/search.hpp
+0 −1 cpp/include/cudf/join.hpp
+8 −0 cpp/include/cudf/table/table_view.hpp
+31 −31 cpp/src/groupby/sort/aggregate.cpp
+2 −4 cpp/src/io/json/json_gpu.cu
+17 −9 cpp/src/join/join_common_utils.cuh
+15 −95 cpp/src/join/semi_join.cu
+45 −19 cpp/src/reductions/collect_ops.cu
+0 −0 cpp/src/rolling/detail/lead_lag_nested.cuh
+0 −0 cpp/src/rolling/detail/nth_element.cuh
+0 −0 cpp/src/rolling/detail/range_window_bounds.hpp
+7 −8 cpp/src/rolling/detail/rolling.cuh
+0 −0 cpp/src/rolling/detail/rolling.hpp
+1 −1 cpp/src/rolling/detail/rolling_collect_list.cu
+0 −0 cpp/src/rolling/detail/rolling_collect_list.cuh
+1 −1 cpp/src/rolling/detail/rolling_fixed_window.cu
+2 −5 cpp/src/rolling/detail/rolling_jit.hpp
+1 −1 cpp/src/rolling/detail/rolling_variable_window.cu
+3 −3 cpp/src/rolling/grouped_rolling.cu
+1 −1 cpp/src/rolling/jit/kernel.cu
+1 −1 cpp/src/rolling/range_window_bounds.cpp
+1 −1 cpp/src/rolling/rolling.cu
+0 −0 cpp/src/search/contains_column.cu
+148 −0 cpp/src/search/contains_table.cu
+16 −0 cpp/src/table/table_view.cpp
+248 −108 cpp/tests/groupby/collect_set_tests.cpp
+22 −7 cpp/tests/groupby/merge_sets_tests.cpp
+29 −2 cpp/tests/join/semi_anti_join_tests.cpp
+48 −50 cpp/tests/reductions/collect_ops_tests.cpp
+256 −190 cpp/tests/rolling/collect_ops_test.cpp
+1 −1 cpp/tests/rolling/grouped_rolling_test.cpp
+2 −2 cpp/tests/rolling/range_rolling_window_test.cpp
+1 −1 cpp/tests/rolling/range_window_bounds_test.cpp
+1 −1 cpp/tests/rolling/rolling_test.cpp
+284 −355 java/src/main/native/src/row_conversion.cu
+12 −8 java/src/test/java/ai/rapids/cudf/ReductionTest.java
+36 −16 java/src/test/java/ai/rapids/cudf/TableTest.java
+42 −0 python/cudf/benchmarks/API/bench_rangeindex.py
+32 −22 python/cudf/cudf/core/column/interval.py
+7 −1 python/cudf/cudf/core/column/struct.py
+10 −2 python/cudf/cudf/core/dataframe.py
+16 −0 python/cudf/cudf/core/frame.py
+79 −12 python/cudf/cudf/core/index.py
+8 −1 python/cudf/cudf/core/reshape.py
+25 −14 python/cudf/cudf/core/series.py
+10 −0 python/cudf/cudf/tests/test_concat.py
+47 −0 python/cudf/cudf/tests/test_index.py
+7 −0 python/cudf/cudf/tests/test_joining.py
+23 −0 python/cudf/cudf/tests/test_series.py
+2 −35 python/cudf/setup.cfg
+1 −3 python/cudf_kafka/setup.cfg
+1 −2 python/custreamz/custreamz/tests/conftest.py
+1 −3 python/custreamz/setup.cfg
+2 −2 python/dask_cudf/dask_cudf/core.py
+1 −3 python/dask_cudf/setup.cfg
+33 −0 setup.cfg

0 comments on commit 8d5c443

Please sign in to comment.