Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Scatter struct_scalar #8630

Merged
merged 11 commits into from
Jul 9, 2021
Prev Previous commit
style
  • Loading branch information
isVoid committed Jul 8, 2021
commit 199eccfb72a16e489e7d58ac2c10973be67c0747
4 changes: 2 additions & 2 deletions cpp/include/cudf/detail/null_mask.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void set_null_mask(bitmask_type* bitmask,
*
* @param[in] stream CUDA stream used for device memory operations and kernel launches.
*/
cudf::size_type count_set_bits(bitmask_type const *bitmask,
cudf::size_type count_set_bits(bitmask_type const* bitmask,
size_type start,
size_type stop,
rmm::cuda_stream_view stream);
Expand All @@ -62,7 +62,7 @@ cudf::size_type count_set_bits(bitmask_type const *bitmask,
*
* @param[in] stream CUDA stream used for device memory operations and kernel launches.
*/
cudf::size_type count_unset_bits(bitmask_type const *bitmask,
cudf::size_type count_unset_bits(bitmask_type const* bitmask,
size_type start,
size_type stop,
rmm::cuda_stream_view stream);
Expand Down