From 2d8f4863fb1b20296bab303d58199c7eb7530edb Mon Sep 17 00:00:00 2001 From: "Corey J. Nolet" Date: Tue, 1 Feb 2022 18:31:12 -0500 Subject: [PATCH 1/5] cuml updates for lap, label, cluster, and spectral apis --- cpp/src/hdbscan/condensed_hierarchy.cu | 2 +- cpp/src/hdbscan/detail/extract.cuh | 3 +-- cpp/src/hdbscan/detail/membership.cuh | 2 +- cpp/src/hdbscan/detail/reachability.cuh | 2 -- cpp/src/hdbscan/detail/select.cuh | 2 +- cpp/src/hdbscan/detail/stabilities.cuh | 2 +- cpp/src/hdbscan/detail/utils.h | 4 +--- cpp/src/hierarchy/pw_dist_graph.cuh | 1 - cpp/src/holtwinters/internal/hw_eval.cuh | 1 - cpp/src/holtwinters/internal/hw_optim.cuh | 1 - cpp/src/knn/knn.cu | 2 +- cpp/src/svm/svc_impl.cuh | 2 +- cpp/src/tsne/fft_tsne.cuh | 1 - cpp/src_prims/functions/hinge.cuh | 1 - cpp/src_prims/functions/linearReg.cuh | 1 - cpp/src_prims/label/classlabels.cuh | 2 +- cpp/src_prims/linalg/lstsq.cuh | 1 - cpp/src_prims/linalg/rsvd.cuh | 1 - cpp/src_prims/random/make_regression.cuh | 1 - cpp/test/prims/knn_classify.cu | 2 +- 20 files changed, 10 insertions(+), 24 deletions(-) diff --git a/cpp/src/hdbscan/condensed_hierarchy.cu b/cpp/src/hdbscan/condensed_hierarchy.cu index 64d01c5883..a7a047263f 100644 --- a/cpp/src/hdbscan/condensed_hierarchy.cu +++ b/cpp/src/hdbscan/condensed_hierarchy.cu @@ -14,7 +14,7 @@ * limitations under the License. */ -#include +#include #include diff --git a/cpp/src/hdbscan/detail/extract.cuh b/cpp/src/hdbscan/detail/extract.cuh index 4a9429e98b..b5352b731d 100644 --- a/cpp/src/hdbscan/detail/extract.cuh +++ b/cpp/src/hdbscan/detail/extract.cuh @@ -21,12 +21,11 @@ #include "stabilities.cuh" #include "utils.h" -#include