Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
1d7e8e0
Add new implementation and test files
ttnghia Jun 24, 2022
51b80db
Fix compile error
ttnghia Jun 24, 2022
08a76ad
Rename function
ttnghia Jun 27, 2022
16101f7
Implement `cudf::detail::stable_distinct` and `lists::distinct`
ttnghia Jun 27, 2022
5ec13d6
Rewrite doxygen
ttnghia Jun 27, 2022
6c5b738
Rename variable
ttnghia Jun 27, 2022
5b70eee
Rewrite comment
ttnghia Jun 27, 2022
238248d
Rename files
ttnghia Jun 27, 2022
ba6bf6b
Implement float tests
ttnghia Jun 27, 2022
3845c95
Implement string tests
ttnghia Jun 27, 2022
507c82d
Implement tests for `ListDistinctTypedTest`
ttnghia Jun 28, 2022
2cb8347
Complete the remaining tests
ttnghia Jun 28, 2022
7efdea0
Merge branch 'branch-22.08' into add_lists_distinct
ttnghia Jun 28, 2022
4388637
Rewrite doxygen
ttnghia Jun 28, 2022
4dd5e74
Misc
ttnghia Jun 28, 2022
3b0760c
Misc
ttnghia Jun 28, 2022
9730b70
Rewrite test
ttnghia Jun 28, 2022
9bd9b6f
Fix doxygen
ttnghia Jun 28, 2022
790a482
Fix header
ttnghia Jun 28, 2022
1c58baa
Rewrite doxygen
ttnghia Jun 28, 2022
d493c4f
Rewrite doxygen and fix headers
ttnghia Jun 28, 2022
d090d2a
Fix iterator type
ttnghia Jun 30, 2022
ee51822
Rewrite doxygen
ttnghia Jun 30, 2022
ccdd6f0
Add empty lines
ttnghia Jun 30, 2022
034ee2a
Merge branch 'branch-22.08' into add_lists_distinct
ttnghia Jun 30, 2022
b1231a2
Update default stream
ttnghia Jun 30, 2022
af91b80
Merge branch 'branch-22.08' into add_lists_distinct
ttnghia Jul 5, 2022
86c9ba8
Merge branch 'branch-22.08' into add_lists_distinct
ttnghia Jul 8, 2022
99d70b1
Handle empty input
ttnghia Jul 8, 2022
cf965f6
Merge branch 'add_lists_distinct' into refactor_collect_set
ttnghia Jul 8, 2022
dbc483c
Replace `lists::drop_list_duplicates` by `lists::distinct`
ttnghia Jul 8, 2022
450e509
Fix merge set tests
ttnghia Jul 8, 2022
5ab24f3
Fix collect set tests
ttnghia Jul 8, 2022
555eacc
Merge branch 'add_lists_distinct' into use_lists_distinct_in_java
ttnghia Jul 8, 2022
6270714
Use `lists::distinct` in `dropListDuplicates`
ttnghia Jul 8, 2022
6573d5a
Implement `lists_distinct_by_key` in JNI
ttnghia Jul 8, 2022
d1fa26c
Merge branch 'add_lists_distinct' into use_lists_distinct_in_python
ttnghia Jul 8, 2022
717118e
Use `lists::distinct`
ttnghia Jul 8, 2022
24b7d0f
Fix style
ttnghia Jul 10, 2022
cfc7b9a
Update copyright year
ttnghia Jul 10, 2022
e4fc6c4
Merge branch 'branch-22.08' into refactor_collect_set
ttnghia Jul 11, 2022
2ed173c
Fix `collect_ops_tests`
ttnghia Jul 11, 2022
b0ee7c6
Optimize `collect_ops`
ttnghia Jul 11, 2022
e957613
Fix import
ttnghia Jul 11, 2022
1f41fa5
Fix style
ttnghia Jul 11, 2022
3de1f87
Merge branch 'use_lists_distinct_in_python' into remove_drop_list_dup…
ttnghia Jul 11, 2022
824325a
Merge branch 'refactor_collect_set' into remove_drop_list_duplicates
ttnghia Jul 11, 2022
3e2a0df
Merge branch 'use_lists_distinct_in_java' into remove_drop_list_dupli…
ttnghia Jul 11, 2022
4ddd73a
Remove files
ttnghia Jul 11, 2022
f06e3d2
Remove file
ttnghia Jul 11, 2022
c1d05d9
Merge branch 'branch-22.08' into deprecate_drop_list_duplicates
ttnghia Jul 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions conda/recipes/libcudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,11 @@ outputs:
- test -f $PREFIX/include/cudf/lists/detail/concatenate.hpp
- test -f $PREFIX/include/cudf/lists/detail/contains.hpp
- test -f $PREFIX/include/cudf/lists/detail/copying.hpp
- test -f $PREFIX/include/cudf/lists/detail/drop_list_duplicates.hpp
- test -f $PREFIX/include/cudf/lists/detail/extract.hpp
- test -f $PREFIX/include/cudf/lists/detail/interleave_columns.hpp
- test -f $PREFIX/include/cudf/lists/detail/scatter_helper.cuh
- test -f $PREFIX/include/cudf/lists/detail/sorting.hpp
- test -f $PREFIX/include/cudf/lists/detail/stream_compaction.hpp
- test -f $PREFIX/include/cudf/lists/drop_list_duplicates.hpp
- test -f $PREFIX/include/cudf/lists/explode.hpp
- test -f $PREFIX/include/cudf/lists/extract.hpp
- test -f $PREFIX/include/cudf/lists/filling.hpp
Expand Down
1 change: 0 additions & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@ add_library(
src/lists/copying/segmented_gather.cu
src/lists/copying/scatter_helper.cu
src/lists/count_elements.cu
src/lists/drop_list_duplicates.cu
src/lists/explode.cu
src/lists/extract.cu
src/lists/interleave_columns.cu
Expand Down
59 changes: 0 additions & 59 deletions cpp/include/cudf/lists/detail/drop_list_duplicates.hpp

This file was deleted.

119 changes: 0 additions & 119 deletions cpp/include/cudf/lists/drop_list_duplicates.hpp

This file was deleted.

Loading