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

concat_layer_types.h
1 /* file: concat_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 concat layer
21 //--
22 */
23 
24 #ifndef __CONCAT_LAYER_TYPES_H__
25 #define __CONCAT_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 concat
51 {
56 enum Method
57 {
58  defaultDense = 0,
59 };
60 
66 enum LayerDataId
67 {
68  auxInputDimensions = layers::lastLayerInputLayout + 1,
69  lastLayerDataId = auxInputDimensions
70 };
71 
75 namespace interface1
76 {
82 class DAAL_EXPORT Parameter: public layers::Parameter
83 {
84 public:
90  Parameter(size_t concatDimension = 0);
91 
92  size_t concatDimension;
93 };
94 
95 } // namespace interface1
96 using interface1::Parameter;
97 
98 } // namespace concat
100 } // namespace layers
101 } // namespace neural_networks
102 } // namespace algorithm
103 } // namespace daal
104 #endif
daal::algorithms::neural_networks::layers::concat::interface1::Parameter
concat layer parameters
Definition: concat_layer_types.h:82
daal::algorithms::neural_networks::layers::concat::defaultDense
Definition: concat_layer_types.h:58
daal::algorithms::neural_networks::layers::concat::auxInputDimensions
Definition: concat_layer_types.h:68
daal::algorithms::neural_networks::layers::concat::Method
Method
Definition: concat_layer_types.h:56
daal_defines.h
daal::algorithms::neural_networks::layers::concat::interface1::Parameter::concatDimension
size_t concatDimension
Definition: concat_layer_types.h:92
daal::algorithms::neural_networks::layers::concat::LayerDataId
LayerDataId
Identifiers of input objects for the backward concat layer and results for the forward concat layer...
Definition: concat_layer_types.h:66

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