Skip to content

Commit

Permalink
Remove jit binary op bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Jan 22, 2024
1 parent a948a55 commit bcb97f1
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions python/cudf/cudf/_lib/cpp/binaryop.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -63,27 +63,3 @@ cdef extern from "cudf/binaryop.hpp" namespace "cudf" nogil:
const string& op,
data_type output_type
) except +

unique_ptr[column] jit_binary_operation \
"cudf::jit::binary_operation" (
const column_view& lhs,
const column_view& rhs,
binary_operator op,
data_type output_type
) except +

unique_ptr[column] jit_binary_operation \
"cudf::jit::binary_operation" (
const column_view& lhs,
const scalar& rhs,
binary_operator op,
data_type output_type
) except +

unique_ptr[column] jit_binary_operation \
"cudf::jit::binary_operation" (
const scalar& lhs,
const column_view& rhs,
binary_operator op,
data_type output_type
) except +

0 comments on commit bcb97f1

Please sign in to comment.