dbscan_api.h
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 #pragma once
6 
7 #include <cuml/cuml_api.h>
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
36  float* input,
37  int n_rows,
38  int n_cols,
39  float eps,
40  int min_pts,
41  int* labels,
42  int* core_sample_indices,
43  size_t max_bytes_per_batch,
44  int verbosity);
45 
47  double* input,
48  int n_rows,
49  int n_cols,
50  double eps,
51  int min_pts,
52  int* labels,
53  int* core_sample_indices,
54  size_t max_bytes_per_batch,
55  int verbosity);
58 #ifdef __cplusplus
59 }
60 #endif
int cumlHandle_t
Definition: cuml_api.h:26
cumlError_t
Definition: cuml_api.h:28
cumlError_t cumlDpDbscanFit(cumlHandle_t handle, double *input, int n_rows, int n_cols, double eps, int min_pts, int *labels, int *core_sample_indices, size_t max_bytes_per_batch, int verbosity)
Definition: dbscan_api.cpp:58
cumlError_t cumlSpDbscanFit(cumlHandle_t handle, float *input, int n_rows, int n_cols, float eps, int min_pts, int *labels, int *core_sample_indices, size_t max_bytes_per_batch, int verbosity)
Definition: dbscan_api.cpp:15