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

eltwise_sum_layer_types.h
1 /* file: eltwise_sum_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 // Element-wise sum layer parameter structure.
21 //--
22 */
23 
24 #ifndef __ELTWISE_SUM_LAYER_TYPES_H__
25 #define __ELTWISE_SUM_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 {
47 namespace eltwise_sum
48 {
53 enum Method
54 {
55  defaultDense = 0
56 };
57 
63 enum LayerDataId
64 {
65  auxCoefficients,
66  lastLayerDataId = auxCoefficients
67 };
68 
74 enum LayerDataNumericTableId
75 {
76  auxNumberOfCoefficients = lastLayerDataId + 1,
77  lastLayerDataNumericTableId = auxNumberOfCoefficients
78 };
79 
80 
81 namespace interface1
82 {
90 /* [Parameter source code] */
91 struct DAAL_EXPORT Parameter: public layers::Parameter
92 {
97  Parameter();
98 };
99 /* [Parameter source code] */
100 
101 } // namespace interface1
102 using interface1::Parameter;
103 
104 } // namespace eltwise_sum
106 } // namespace layers
107 } // namespace neural_networks
108 } // namespace algorithms
109 } // namespace daal
110 #endif
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:63
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:74
daal::algorithms::neural_networks::layers::eltwise_sum::auxNumberOfCoefficients
Definition: eltwise_sum_layer_types.h:76
daal::algorithms::neural_networks::layers::eltwise_sum::interface1::Parameter
Parameters for the element-wise sum layer.
Definition: eltwise_sum_layer_types.h:91
daal_defines.h
daal::algorithms::neural_networks::layers::eltwise_sum::defaultDense
Definition: eltwise_sum_layer_types.h:55
daal::algorithms::neural_networks::layers::eltwise_sum::Method
Method
Definition: eltwise_sum_layer_types.h:53
daal::algorithms::neural_networks::layers::eltwise_sum::auxCoefficients
Definition: eltwise_sum_layer_types.h:65

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