Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Oct 8, 2024
1 parent b8f8d7d commit 860835d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/cudf/cudf/_lib/nvtext/jaccard.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from cudf.core.buffer import acquire_spill_lock

from pylibcudf.libcudf.types cimport size_type

from cudf._lib.column cimport Column

from pylibcudf import nvtext
Expand All @@ -14,6 +12,6 @@ def jaccard_index(Column input1, Column input2, int width):
result = nvtext.jaccard.jaccard_index(
input1.to_pylibcudf(mode="read"),
input2.to_pylibcudf(mode="read"),
<size_type> width,
width,
)
return Column.from_pylibcudf(result)

0 comments on commit 860835d

Please sign in to comment.