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

split_layer_types.h
1 /* file: split_layer_types.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 the split layer
21 //--
22 */
23 
24 #ifndef __SPLIT_LAYER_TYPES_H__
25 #define __SPLIT_LAYER_TYPES_H__
26 
27 #include "algorithms/algorithm.h"
28 #include "data_management/data/tensor.h"
29 #include "data_management/data/homogen_tensor.h"
30 #include "services/daal_defines.h"
31 #include "algorithms/neural_networks/layers/layer_types.h"
32 
33 namespace daal
34 {
35 namespace algorithms
36 {
37 namespace neural_networks
38 {
39 namespace layers
40 {
50 namespace split
51 {
56 enum Method
57 {
58  defaultDense = 0,
59 };
60 
64 namespace interface1
65 {
71 class DAAL_EXPORT Parameter: public layers::Parameter
72 {
73 public:
80  Parameter(size_t nOutputs = 1, size_t nInputs = 1);
81 
82  size_t nOutputs;
83  size_t nInputs;
84 };
85 
86 } // namespace interface1
87 using interface1::Parameter;
88 
89 } // namespace split
91 } // namespace layers
92 } // namespace neural_networks
93 } // namespace algorithm
94 } // namespace daal
95 #endif
daal::algorithms::neural_networks::layers::split::interface1::Parameter::nInputs
size_t nInputs
Definition: split_layer_types.h:83
daal::algorithms::neural_networks::layers::split::interface1::Parameter::nOutputs
size_t nOutputs
Definition: split_layer_types.h:82
daal_defines.h
daal::algorithms::dbscan::split
Definition: dbscan_types.h:167
daal::algorithms::neural_networks::layers::split::interface1::Parameter
split layer parameters
Definition: split_layer_types.h:71
daal::algorithms::neural_networks::layers::split::Method
Method
Definition: split_layer_types.h:56
daal::algorithms::neural_networks::layers::split::defaultDense
Definition: split_layer_types.h:58

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