From 2498c5841c23b7104e474fae3c555eabf58c9fb7 Mon Sep 17 00:00:00 2001 From: Devavret Makkar Date: Mon, 23 Nov 2020 17:47:57 +0530 Subject: [PATCH] broken debug build due to missed stream changes --- cpp/src/bitmask/null_mask.cu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/src/bitmask/null_mask.cu b/cpp/src/bitmask/null_mask.cu index 06f969a9d43..ae0395913cc 100644 --- a/cpp/src/bitmask/null_mask.cu +++ b/cpp/src/bitmask/null_mask.cu @@ -142,7 +142,7 @@ void set_null_mask(bitmask_type *bitmask, cudf::detail::grid_1d config(number_of_mask_words, 256); set_null_mask_kernel<<>>( static_cast(bitmask), begin_bit, end_bit, valid, number_of_mask_words); - CHECK_CUDA(stream); + CHECK_CUDA(stream.value()); } } @@ -604,7 +604,7 @@ std::vector segmented_count_set_bits(bitmask_type const *bitmask, last_word_indices, stream.value())); - CHECK_CUDA(stream); + CHECK_CUDA(stream.value()); // third, adjust counts in segment boundaries (if segments are not // word-aligned) @@ -619,7 +619,7 @@ std::vector segmented_count_set_bits(bitmask_type const *bitmask, stream.value()>>>( bitmask, num_ranges, d_first_indices.begin(), d_last_indices.begin(), d_null_counts.begin()); - CHECK_CUDA(stream); + CHECK_CUDA(stream.value()); std::vector ret(num_ranges); CUDA_TRY(cudaMemcpyAsync(ret.data(),