diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 12b08b136c6..b3ad7cda1b7 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -795,8 +795,6 @@ add_library( src/structs/structs_column_factories.cu src/structs/structs_column_view.cpp src/structs/utilities.cu - src/table/primitive_row_operators.cu - src/table/row_operators.cu src/table/table.cpp src/table/table_device_view.cu src/table/table_view.cpp diff --git a/cpp/include/cudf/detail/row_operator/row_operators.cuh b/cpp/include/cudf/detail/row_operator/row_operators.cuh index 9033bed5bec..1209f1bdccb 100644 --- a/cpp/include/cudf/detail/row_operator/row_operators.cuh +++ b/cpp/include/cudf/detail/row_operator/row_operators.cuh @@ -28,7 +28,6 @@ #include #include #include -#include #include #include #include diff --git a/cpp/include/cudf/table/experimental/row_operators.cuh b/cpp/include/cudf/table/experimental/row_operators.cuh deleted file mode 100644 index e2e08c59f55..00000000000 --- a/cpp/include/cudf/table/experimental/row_operators.cuh +++ /dev/null @@ -1,2111 +0,0 @@ -/* - * Copyright (c) 2022-2025, NVIDIA CORPORATION. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#pragma once - -/** - * @file - * @deprecated This header is deprecated in 25.10 and will be removed in 25.12. - * Users should use cudf/detail/row_operator/row_operators.cuh instead. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -namespace CUDF_EXPORT cudf { - -namespace row::primitive { -class row_equality_comparator; // Forward declaration - -template