Skip to content

Commit

Permalink
Remove detail from device_span (#7533)
Browse files Browse the repository at this point in the history
Fix for issue caused by stale PR issue from #7406

Authors:
  - @rwlee
  - Keith Kraus (@kkraus14)

Approvers:
  - Keith Kraus (@kkraus14)
  - Mike Wilson (@hyperbolic2346)
  - GALI PREM SAGAR (@galipremsagar)
  - Jake Hemstad (@jrhemstad)
  - Vukasin Milovanovic (@vuule)
  - Paul Taylor (@trxcllnt)

URL: #7533
  • Loading branch information
rwlee authored Mar 9, 2021
1 parent 8b2ae92 commit 53929eb
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 53929eb

Please sign in to comment.