Skip to content

Commit

Permalink
fix copypaste bug
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-b-miller committed Nov 9, 2022
1 parent 302fe60 commit 02167d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/strings_udf/strings_udf/lowering.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ def _declare_binary_func(lhs, rhs, out, name):
"strip", types.int32(_UDF_STRING_PTR, _STR_VIEW_PTR, _STR_VIEW_PTR)
)
_string_view_lstrip = cuda.declare_device(
"strip", types.int32(_UDF_STRING_PTR, _STR_VIEW_PTR, _STR_VIEW_PTR)
"lstrip", types.int32(_UDF_STRING_PTR, _STR_VIEW_PTR, _STR_VIEW_PTR)
)
_string_view_rstrip = cuda.declare_device(
"strip", types.int32(_UDF_STRING_PTR, _STR_VIEW_PTR, _STR_VIEW_PTR)
"rstrip", types.int32(_UDF_STRING_PTR, _STR_VIEW_PTR, _STR_VIEW_PTR)
)

# A binary function of the form f(string, int) -> bool
Expand Down

0 comments on commit 02167d3

Please sign in to comment.