22 #ifndef __POOLING3D_LAYER_BACKWARD_TYPES_H__
23 #define __POOLING3D_LAYER_BACKWARD_TYPES_H__
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_backward_types.h"
30 #include "algorithms/neural_networks/layers/pooling3d/pooling3d_layer_types.h"
36 namespace neural_networks
63 class DAAL_EXPORT Input :
public layers::backward::Input
66 typedef layers::backward::Input super;
71 Input(
const Input& other);
79 virtual services::Collection<size_t> getGradientSize()
const;
82 virtual data_management::NumericTablePtr getAuxInputDimensions()
const = 0;
84 virtual services::Collection<size_t> getInputGradientSize(
const pooling3d::Parameter *parameter)
const;
86 size_t computeInputDimension(
size_t maskDim,
size_t kernelSize,
size_t padding,
size_t stride)
const;
94 class DAAL_EXPORT Result :
public layers::backward::Result
109 template <
typename algorithmFPType>
110 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
120 services::Status check(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
124 using interface1::Input;
125 using interface1::Result;
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::layers::pooling3d::backward::interface1::Result
Provides methods to access the result obtained with the compute() method of the backward 3D pooling l...
Definition: pooling3d_layer_backward_types.h:94