From 4a98b5df951b76bcffa369e768a16c6041a0e2a6 Mon Sep 17 00:00:00 2001 From: "Corey J. Nolet" Date: Thu, 26 Sep 2024 12:01:50 -0400 Subject: [PATCH] Removing deprecations from epsilon neighborhood prims --- .../raft/neighbors/epsilon_neighborhood.cuh | 33 +++++++++---------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/cpp/include/raft/neighbors/epsilon_neighborhood.cuh b/cpp/include/raft/neighbors/epsilon_neighborhood.cuh index 7c66272051..bade4385fb 100644 --- a/cpp/include/raft/neighbors/epsilon_neighborhood.cuh +++ b/cpp/include/raft/neighbors/epsilon_neighborhood.cuh @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2024, NVIDIA CORPORATION. + * Copyright (c) 2020-2023, NVIDIA CORPORATION. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -46,15 +46,15 @@ namespace raft::neighbors::epsilon_neighborhood { * @param[in] stream cuda stream */ template -[[deprecated("Use cuVS instead")]] void epsUnexpL2SqNeighborhood(bool* adj, - idx_t* vd, - const value_t* x, - const value_t* y, - idx_t m, - idx_t n, - idx_t k, - value_t eps, - cudaStream_t stream) +void epsUnexpL2SqNeighborhood(bool* adj, + idx_t* vd, + const value_t* x, + const value_t* y, + idx_t m, + idx_t n, + idx_t k, + value_t eps, + cudaStream_t stream) { spatial::knn::detail::epsUnexpL2SqNeighborhood( adj, vd, x, y, m, n, k, eps, stream); @@ -98,13 +98,12 @@ template * squared as we compute L2-squared distance in this method) */ template -[[deprecated("Use cuVS instead")]] void eps_neighbors_l2sq( - raft::resources const& handle, - raft::device_matrix_view x, - raft::device_matrix_view y, - raft::device_matrix_view adj, - raft::device_vector_view vd, - value_t eps) +void eps_neighbors_l2sq(raft::resources const& handle, + raft::device_matrix_view x, + raft::device_matrix_view y, + raft::device_matrix_view adj, + raft::device_vector_view vd, + value_t eps) { epsUnexpL2SqNeighborhood(adj.data_handle(), vd.data_handle(),