C++ API Reference for Intel® Data Analytics Acceleration Library 2019 Update 4

eltwise_sum_layer_types.h
1 /* file: eltwise_sum_layer_types.h */
2 /*******************************************************************************
3 * Copyright 2014-2019 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 // Element-wise sum layer parameter structure.
19 //--
20 */
21 
22 #ifndef __ELTWISE_SUM_LAYER_TYPES_H__
23 #define __ELTWISE_SUM_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 {
45 namespace eltwise_sum
46 {
51 enum Method
52 {
53  defaultDense = 0
54 };
55 
61 enum LayerDataId
62 {
63  auxCoefficients,
64  lastLayerDataId = auxCoefficients
65 };
66 
72 enum LayerDataNumericTableId
73 {
74  auxNumberOfCoefficients = lastLayerDataId + 1,
75  lastLayerDataNumericTableId = auxNumberOfCoefficients
76 };
77 
78 
79 namespace interface1
80 {
87 /* [Parameter source code] */
88 struct DAAL_EXPORT Parameter: public layers::Parameter
89 {
93  Parameter();
94 };
95 /* [Parameter source code] */
96 
97 } // namespace interface1
98 using interface1::Parameter;
99 
100 } // namespace eltwise_sum
102 } // namespace layers
103 } // namespace neural_networks
104 } // namespace algorithms
105 } // namespace daal
106 #endif
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::layers::eltwise_sum::Method
Method
Definition: eltwise_sum_layer_types.h:51
daal_defines.h
daal::algorithms::neural_networks::layers::eltwise_sum::LayerDataNumericTableId
LayerDataNumericTableId
Available identifiers of input numeric tables for the backward element-wise sum layer and identifiers...
Definition: eltwise_sum_layer_types.h:72
daal::algorithms::neural_networks::layers::eltwise_sum::interface1::Parameter
Parameters for the element-wise sum layer.
Definition: eltwise_sum_layer_types.h:88
daal::algorithms::neural_networks::layers::eltwise_sum::defaultDense
Definition: eltwise_sum_layer_types.h:53
daal::algorithms::neural_networks::layers::eltwise_sum::LayerDataId
LayerDataId
Available identifiers of input tensors for the backward element-wise sum layer and identifiers of res...
Definition: eltwise_sum_layer_types.h:61
daal::algorithms::neural_networks::layers::eltwise_sum::auxNumberOfCoefficients
Definition: eltwise_sum_layer_types.h:74
daal::algorithms::neural_networks::layers::eltwise_sum::auxCoefficients
Definition: eltwise_sum_layer_types.h:63

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