Skip to content

Commit

Permalink
address review comments (davidwendt)
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikeyann committed May 21, 2022
1 parent 8601b8d commit 7b45716
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cpp/include/cudf/detail/copy_if_else.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ __launch_bounds__(block_size) __global__
// begin/end indices for the column data
size_type begin = 0;
size_type end = out.size();
// warp indices. since 1 warp == 32 threads == sizeof(bit_mask_t) * 8,
// warp indices. since 1 warp == 32 threads == sizeof(bitmask_type) * 8,
// each warp will process one (32 bit) of the validity mask via
// __ballot_sync()
size_type warp_begin = cudf::word_index(begin);
Expand Down
9 changes: 2 additions & 7 deletions cpp/include/cudf/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,8 @@
* @brief Type declarations for libcudf.
*/

// FIXME: where is this used? TODO: remove if unused.
namespace bit_mask {
using bit_mask_t = uint32_t;
}

// Forward declarations
/// @cond FORWARD_DECLARATIONS
/// @cond
namespace rmm {
class device_buffer;
namespace mr {
Expand Down Expand Up @@ -247,7 +242,7 @@ class data_type {
data_type() = default;
~data_type() = default;
data_type(data_type const&) = default; ///< Copy constructor
data_type(data_type&&) = default; ///< Move constructor
data_type(data_type&&) = default; ///< Move constructor

/**
* @brief Copy assignment operator for data_type
Expand Down

0 comments on commit 7b45716

Please sign in to comment.