From b12fc82be4c06cd157925ef14411fa2ee9cf0d07 Mon Sep 17 00:00:00 2001 From: "Corey J. Nolet" Date: Sat, 11 Mar 2023 19:32:52 -0500 Subject: [PATCH] Small follow-up to specializations cleanup (#1332) Just making sure the knn bench will properly compile even if only the distance library is compiled. Authors: - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Ben Frederickson (https://github.com/benfred) URL: https://github.com/rapidsai/raft/pull/1332 --- cpp/bench/neighbors/knn.cuh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cpp/bench/neighbors/knn.cuh b/cpp/bench/neighbors/knn.cuh index 0a59da3970..259d39d8f7 100644 --- a/cpp/bench/neighbors/knn.cuh +++ b/cpp/bench/neighbors/knn.cuh @@ -26,13 +26,10 @@ #if defined RAFT_DISTANCE_COMPILED #include - -// TODO: Legacy. Remove when FAISS is removed -#include #endif #if defined RAFT_NN_COMPILED -#include +// TODO: Legacy. Remove when FAISS is removed #include #endif