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

maximum_pooling1d_layer_types.h
1 /* file: maximum_pooling1d_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 maximum 1D pooling layer.
21 //--
22 */
23 
24 #ifndef __MAXIMUM_POOLING1D_LAYER_TYPES_H__
25 #define __MAXIMUM_POOLING1D_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/pooling1d/pooling1d_layer_types.h"
32 
33 namespace daal
34 {
35 namespace algorithms
36 {
37 namespace neural_networks
38 {
39 namespace layers
40 {
47 namespace maximum_pooling1d
48 {
53 enum Method
54 {
55  defaultDense = 0
56 };
57 
62 enum LayerDataId
63 {
64  auxSelectedIndices,
65  lastLayerDataId = auxSelectedIndices
66 };
67 
72 enum LayerDataNumericTableId
73 {
74  auxInputDimensions = lastLayerDataId + 1,
76  lastLayerDataNumericTableId = auxInputDimensions
77 };
78 
82 namespace interface1
83 {
84 
92 /* [Parameter source code] */
93 struct DAAL_EXPORT Parameter: public pooling1d::Parameter
94 {
104  Parameter(size_t index, size_t kernelSize = 2, size_t stride = 2, size_t padding = 0);
105 };
106 /* [Parameter source code] */
107 
108 } // interface1
109 using interface1::Parameter;
110 
111 } // namespace maximum_pooling1d
113 } // namespace layers
114 } // namespace neural_networks
115 } // namespace algorithm
116 } // namespace daal
117 
118 #endif
daal::algorithms::neural_networks::layers::maximum_pooling1d::interface1::Parameter
Parameters for the maximum 1D pooling layer.
Definition: maximum_pooling1d_layer_types.h:93
daal::algorithms::neural_networks::layers::maximum_pooling1d::auxSelectedIndices
Definition: maximum_pooling1d_layer_types.h:64
daal::algorithms::neural_networks::layers::maximum_pooling1d::defaultDense
Definition: maximum_pooling1d_layer_types.h:55
daal::algorithms::neural_networks::layers::maximum_pooling1d::auxInputDimensions
Definition: maximum_pooling1d_layer_types.h:74
daal_defines.h
daal::algorithms::neural_networks::layers::maximum_pooling1d::LayerDataNumericTableId
LayerDataNumericTableId
Identifiers of input numeric tables for the backward maximum 1D pooling layer and results for the for...
Definition: maximum_pooling1d_layer_types.h:72
daal::algorithms::neural_networks::layers::maximum_pooling1d::Method
Method
Computation methods for the maximum 1D pooling layer.
Definition: maximum_pooling1d_layer_types.h:53
daal::algorithms::neural_networks::layers::maximum_pooling1d::LayerDataId
LayerDataId
Identifiers of input tensors for the backward maximum 1D pooling layer and results for the forward ma...
Definition: maximum_pooling1d_layer_types.h:62

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