C++ API Reference for Intel® Data Analytics Acceleration Library 2018 Update 3

concat_layer_types.h
1 /* file: concat_layer_types.h */
2 /*******************************************************************************
3 * Copyright 2014-2018 Intel Corporation.
4 *
5 * This software and the related documents are Intel copyrighted materials, and
6 * your use of them is governed by the express license under which they were
7 * provided to you (License). Unless the License provides otherwise, you may not
8 * use, modify, copy, publish, distribute, disclose or transmit this software or
9 * the related documents without Intel's prior written permission.
10 *
11 * This software and the related documents are provided as is, with no express
12 * or implied warranties, other than those that are expressly stated in the
13 * License.
14 *******************************************************************************/
15 
16 /*
17 //++
18 // Implementation of the concat layer
19 //--
20 */
21 
22 #ifndef __CONCAT_LAYER_TYPES_H__
23 #define __CONCAT_LAYER_TYPES_H__
24 
25 #include "algorithms/algorithm.h"
26 #include "data_management/data/tensor.h"
27 #include "data_management/data/homogen_tensor.h"
28 #include "services/daal_defines.h"
29 #include "algorithms/neural_networks/layers/layer_types.h"
30 
31 namespace daal
32 {
33 namespace algorithms
34 {
35 namespace neural_networks
36 {
37 namespace layers
38 {
48 namespace concat
49 {
54 enum Method
55 {
56  defaultDense = 0,
57 };
58 
64 enum LayerDataId
65 {
66  auxInputDimensions = layers::lastLayerInputLayout + 1,
67  lastLayerDataId = auxInputDimensions
68 };
69 
73 namespace interface1
74 {
79 class DAAL_EXPORT Parameter: public layers::Parameter
80 {
81 public:
86  Parameter(size_t concatDimension = 0);
87 
88  size_t concatDimension;
89 };
90 
91 } // namespace interface1
92 using interface1::Parameter;
93 
94 } // namespace concat
96 } // namespace layers
97 } // namespace neural_networks
98 } // namespace algorithm
99 } // namespace daal
100 #endif
daal
Definition: algorithm_base_common.h:31
daal_defines.h
daal::algorithms::neural_networks::layers::concat::interface1::Parameter::concatDimension
size_t concatDimension
Definition: concat_layer_types.h:88
daal::algorithms::neural_networks::layers::concat::Method
Method
Definition: concat_layer_types.h:54
daal::algorithms::neural_networks::layers::concat::auxInputDimensions
Definition: concat_layer_types.h:66
daal::algorithms::neural_networks::layers::concat::defaultDense
Definition: concat_layer_types.h:56
daal::algorithms::neural_networks::layers::concat::interface1::Parameter
concat layer parameters
Definition: concat_layer_types.h:79
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:64

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