kernel_params.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2025, NVIDIA CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
20 
21 struct KernelParams;
22 
23 } // end namespace cuvs::distance::kernels
24 
25 namespace ML::matrix {
26 
27 enum class KernelType { LINEAR, POLYNOMIAL, RBF, TANH };
28 
29 struct KernelParams {
31  int degree;
32  double gamma;
33  double coef0;
34 
35  cuvs::distance::kernels::KernelParams to_cuvs() const;
36 };
37 
38 } // end namespace ML::matrix
Definition: kernel_params.hpp:25
KernelType
Definition: kernel_params.hpp:27
Definition: kernel_params.hpp:19
Definition: kernel_params.hpp:29
int degree
Definition: kernel_params.hpp:31
cuvs::distance::kernels::KernelParams to_cuvs() const
Definition: kernel_params.cpp:23
double coef0
Definition: kernel_params.hpp:33
KernelType kernel
Definition: kernel_params.hpp:30
double gamma
Definition: kernel_params.hpp:32