Skip to content

Commit

Permalink
Merge branch 'branch-0.19' into binaryop-error
Browse files Browse the repository at this point in the history
  • Loading branch information
codereport committed Mar 9, 2021
2 parents 440bf52 + 53929eb commit 43c2def
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/include/cudf/detail/null_mask.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#include <rmm/cuda_stream_view.hpp>

using cudf::detail::device_span;
using cudf::device_span;

namespace cudf {
namespace detail {
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/bitmask/null_mask.cu
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
#include <numeric>
#include <type_traits>

using cudf::detail::device_span;
using cudf::device_span;

namespace cudf {
size_type state_null_count(mask_state state, size_type size)
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/structs/structs_column_factories.cu
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void superimpose_parent_nullmask(bitmask_type const* parent_null_mask,
reinterpret_cast<bitmask_type const*>(current_child_mask)};
std::vector<size_type> begin_bits{0, 0};
cudf::detail::inplace_bitmask_and(
detail::device_span<bitmask_type>(current_child_mask, num_bitmask_words(child.size())),
device_span<bitmask_type>(current_child_mask, num_bitmask_words(child.size())),
masks,
begin_bits,
child.size(),
Expand Down

0 comments on commit 43c2def

Please sign in to comment.