From 0bbdd4dd8007e2a3e72d89a3b2cd647a26392a42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Akif=20=C3=87=C3=96RD=C3=9CK?= Date: Wed, 23 Feb 2022 19:30:46 +0100 Subject: [PATCH] Include thrust/sort.h in ball_cover.cuh (#526) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New thrust release (11.6) has removed some unnecessary header includes. In order for raft to build, we need to include `thrust/sort.h` in `ball_cover.cuh`. Authors: - Akif ÇÖRDÜK (https://github.com/akifcorduk) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: https://github.com/rapidsai/raft/pull/526 --- cpp/include/raft/spatial/knn/detail/ball_cover.cuh | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/include/raft/spatial/knn/detail/ball_cover.cuh b/cpp/include/raft/spatial/knn/detail/ball_cover.cuh index 2b245d06cb..4911582ed9 100644 --- a/cpp/include/raft/spatial/knn/detail/ball_cover.cuh +++ b/cpp/include/raft/spatial/knn/detail/ball_cover.cuh @@ -45,6 +45,7 @@ #include #include #include +#include namespace raft { namespace spatial {