C++ API Reference for Intel® Data Analytics Acceleration Library 2020 Update 1

kernel_function_types_rbf.h
1 /* file: kernel_function_types_rbf.h */
2 /*******************************************************************************
3 * Copyright 2014-2020 Intel Corporation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *******************************************************************************/
17 
18 /*
19 //++
20 // Kernel function parameter structure
21 //--
22 */
23 
24 #ifndef __KERNEL_FUNCTION_TYPES_RBF_H__
25 #define __KERNEL_FUNCTION_TYPES_RBF_H__
26 
27 #include "algorithms/kernel_function/kernel_function_types.h"
28 
29 namespace daal
30 {
31 namespace algorithms
32 {
42 namespace kernel_function
43 {
47 namespace rbf
48 {
53 enum Method
54 {
55  defaultDense = 0,
56  fastCSR = 1
57 };
58 
62 namespace interface1
63 {
70 /* [RBF input object source code] */
71 struct DAAL_EXPORT Parameter : public ParameterBase
72 {
73  Parameter(double sigma = 1.0);
74  double sigma;
75 };
76 /* [RBF input object source code] */
77 
82 class DAAL_EXPORT Input : public kernel_function::Input
83 {
84 public:
85  Input();
86  Input(const Input& other);
87 
88  virtual ~Input() {}
89 
95  services::Status check(const daal::algorithms::Parameter *par, int method) const DAAL_C11_OVERRIDE;
96 };
98 } // namespace interface1
99 using interface1::Input;
100 using interface1::Parameter;
101 
102 } // rbf
103 } // namespace kernel_function
104 } // namespace algorithms
105 } // namespace daal
106 #endif
daal::algorithms::kernel_function::rbf::fastCSR
Definition: kernel_function_types_rbf.h:56
daal::algorithms::kernel_function::rbf::interface1::Parameter
Parameters for the radial basis function (RBF) kernel.
Definition: kernel_function_types_rbf.h:71
daal::algorithms::kernel_function::rbf::Method
Method
Definition: kernel_function_types_rbf.h:53
daal::algorithms::kernel_function::rbf::interface1::Parameter::sigma
double sigma
Definition: kernel_function_types_rbf.h:74
daal::algorithms::kernel_function::rbf::defaultDense
Definition: kernel_function_types_rbf.h:55
daal::algorithms::kernel_function::rbf::interface1::Input
Input objects for the RBF kernel algorithm
Definition: kernel_function_types_rbf.h:82

For more complete information about compiler optimizations, see our Optimization Notice.