spectral.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2019-2021, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #pragma once
7 
8 namespace raft {
9 class handle_t;
10 }
11 
12 namespace ML {
13 
14 namespace Spectral {
15 
30 void fit_embedding(const raft::handle_t& handle,
31  int* rows,
32  int* cols,
33  float* vals,
34  int nnz,
35  int n,
36  int n_components,
37  float* out,
38  unsigned long long seed = 1234567);
39 
40 } // namespace Spectral
41 } // namespace ML
void fit_embedding(const raft::handle_t &handle, int *rows, int *cols, float *vals, int nnz, int n, int n_components, float *out, unsigned long long seed=1234567)
Definition: dbscan.hpp:18
Definition: dbscan.hpp:14