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

algorithm_kernel.h
1 /* file: algorithm_kernel.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 // Implementation of base classes defining algorithm kernel.
21 //--
22 */
23 
24 #ifndef __ALGORITHM_KERNEL_H__
25 #define __ALGORITHM_KERNEL_H__
26 
27 #include "services/daal_memory.h"
28 #include "services/daal_kernel_defines.h"
29 #include "services/error_handling.h"
30 #include "services/env_detect.h"
31 #include "algorithms/algorithm_types.h"
32 
33 namespace daal
34 {
35 namespace algorithms
36 {
37 
42 namespace interface1
43 {
48 class Kernel
49 {
50 public:
51  Kernel() {};
52 
53  virtual ~Kernel () {}
54 };
55 
56 
58 } // namespace interface1
59 using interface1::Kernel;
60 
61 }
62 }
63 #endif
daal::algorithms::interface1::Kernel
Base class to represent algorithm implementation
Definition: algorithm_kernel.h:48
daal_kernel_defines.h

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