Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Chong Gao committed Sep 14, 2024
1 parent 330e828 commit d216993
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cpp/src/strings/search/find.cu
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,6 @@ CUDF_KERNEL void multi_contains_warp_parallel_multi_scalars_fn(
if (str_idx >= num_rows) { return; }

auto const lane_idx = idx % cudf::detail::warp_size;
auto const str_idx = idx / cudf::detail::warp_size;
if (d_strings.is_null(str_idx)) { return; } // bitmask will set result to null.
// get the string for this warp
auto const d_str = d_strings.element<string_view>(str_idx);
Expand Down

0 comments on commit d216993

Please sign in to comment.