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

average_pooling3d_layer_types.h
1 /* file: average_pooling3d_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 three-dimensional average pooling layer.
19 //--
20 */
21 
22 #ifndef __AVERAGE_POOLING3D_LAYER_TYPES_H__
23 #define __AVERAGE_POOLING3D_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/pooling3d/pooling3d_layer_types.h"
30 
31 namespace daal
32 {
33 namespace algorithms
34 {
35 namespace neural_networks
36 {
37 namespace layers
38 {
45 namespace average_pooling3d
46 {
51 enum Method
52 {
53  defaultDense = 0
54 };
55 
60 enum LayerDataId
61 {
62  auxInputDimensions,
63  lastLayerDataId = auxInputDimensions
64 };
65 
69 namespace interface1
70 {
77 /* [Parameter source code] */
78 struct DAAL_EXPORT Parameter: public layers::pooling3d::Parameter
79 {
98  Parameter(size_t firstIndex, size_t secondIndex, size_t thirdIndex,
99  size_t firstKernelSize = 2, size_t secondKernelSize = 2, size_t thirdKernelSize = 2,
100  size_t firstStride = 2, size_t secondStride = 2, size_t thirdStride = 2,
101  size_t firstPadding = 0, size_t secondPadding = 0, size_t thirdPadding = 0);
102 };
103 /* [Parameter source code] */
104 
105 } // interface1
106 using interface1::Parameter;
107 
108 } // namespace average_pooling3d
110 } // namespace layers
111 } // namespace neural_networks
112 } // namespace algorithm
113 } // namespace daal
114 
115 #endif
daal::algorithms::neural_networks::layers::average_pooling3d::auxInputDimensions
Definition: average_pooling3d_layer_types.h:62
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::layers::average_pooling3d::defaultDense
Definition: average_pooling3d_layer_types.h:53
daal_defines.h
daal::algorithms::neural_networks::layers::average_pooling3d::LayerDataId
LayerDataId
Identifiers of input objects for the backward average 3D pooling layer and results for the forward av...
Definition: average_pooling3d_layer_types.h:60
daal::algorithms::neural_networks::layers::average_pooling3d::Method
Method
Computation methods for the average 3D pooling layer.
Definition: average_pooling3d_layer_types.h:51
daal::algorithms::neural_networks::layers::average_pooling3d::interface1::Parameter
Parameters for the average 3D pooling layer.
Definition: average_pooling3d_layer_types.h:78

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