Skip to content

Commit

Permalink
changed cudf_assert to assert
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Apr 8, 2022
1 parent 6b3d152 commit 01aa70f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/strings/count_matches.cu
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ struct count_dispatch_fn {
rmm::cuda_stream_view stream,
rmm::mr::device_memory_resource* mr)
{
cudf_assert(output_size >= d_strings.size() and "Unexpected output size");
assert(output_size >= d_strings.size() and "Unexpected output size");

auto results = make_numeric_column(
data_type{type_id::INT32}, output_size, mask_state::UNALLOCATED, stream, mr);
Expand Down

0 comments on commit 01aa70f

Please sign in to comment.