Skip to content

Commit

Permalink
Add lists filtering APIs to doxygen group. (rapidsai#11336)
Browse files Browse the repository at this point in the history
This PR follows up on rapidsai#11149 to add the lists filtering (stream compaction) APIs to a doxygen group. The previous doxygen group `lists_drop_duplicates` is empty after rapidsai#11326.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - David Wendt (https://github.com/davidwendt)
  - Vukasin Milovanovic (https://github.com/vuule)

URL: rapidsai#11336
  • Loading branch information
bdice authored Jul 25, 2022
1 parent 39e4feb commit a652ca9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions cpp/include/cudf/lists/stream_compaction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@

namespace cudf::lists {

/**
* @addtogroup lists_filtering
* @{
* @file
*/

/**
* @brief Filters elements in each row of `input` LIST column using `boolean_mask`
* LIST of booleans as a mask.
Expand Down Expand Up @@ -81,4 +87,6 @@ std::unique_ptr<column> distinct(
nan_equality nans_equal = nan_equality::ALL_EQUAL,
rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());

/** @} */ // end of group

} // namespace cudf::lists
2 changes: 1 addition & 1 deletion cpp/include/doxygen_groups.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
* @defgroup lists_contains Searching
* @defgroup lists_gather Gathering
* @defgroup lists_elements Counting
* @defgroup lists_drop_duplicates Filtering
* @defgroup lists_filtering Filtering
* @defgroup lists_sort Sorting
* @}
* @defgroup nvtext_apis NVText
Expand Down

0 comments on commit a652ca9

Please sign in to comment.