From bcb97f170f43e4420cac5d4b5b2c6cc6f88c9a39 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Mon, 22 Jan 2024 17:55:03 +0000 Subject: [PATCH] Remove jit binary op bindings --- python/cudf/cudf/_lib/cpp/binaryop.pxd | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/python/cudf/cudf/_lib/cpp/binaryop.pxd b/python/cudf/cudf/_lib/cpp/binaryop.pxd index 7dedecdfece..735216e656a 100644 --- a/python/cudf/cudf/_lib/cpp/binaryop.pxd +++ b/python/cudf/cudf/_lib/cpp/binaryop.pxd @@ -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 +