Skip to content

Commit

Permalink
Fixed include/order, documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
mythrocks committed Oct 12, 2021
1 parent 772a791 commit e0a5689
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cpp/include/cudf/lists/extract.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ namespace lists {
*/

/**
* @brief Create a column where each row is the `index`th element from the corresponding sublist
* in the input `lists_column`.
* @brief Create a column where each row is the element at position `index` from the corresponding
* sublist in the input `lists_column`.
*
* Output `column[i]` is set from element `lists_column[i][index]`.
* If `index` is larger than the size of the sublist at `lists_column[i]`
Expand Down
5 changes: 3 additions & 2 deletions cpp/src/lists/extract.cu
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@
#include <cudf/detail/sequence.hpp>
#include <cudf/lists/detail/gather.cuh>
#include <cudf/lists/extract.hpp>
#include <cudf/scalar/scalar_factories.hpp>

#include <limits>
#include <rmm/cuda_stream_view.hpp>
#include <rmm/exec_policy.hpp>
#include "cudf/scalar/scalar_factories.hpp"

#include <thrust/copy.h>
#include <thrust/iterator/constant_iterator.h>

#include <limits>

namespace cudf {
namespace lists {
namespace detail {
Expand Down

0 comments on commit e0a5689

Please sign in to comment.