48 #ifndef __POOLING3D_LAYER_BACKWARD_TYPES_H__
49 #define __POOLING3D_LAYER_BACKWARD_TYPES_H__
51 #include "algorithms/algorithm.h"
52 #include "data_management/data/tensor.h"
53 #include "data_management/data/homogen_tensor.h"
54 #include "services/daal_defines.h"
55 #include "algorithms/neural_networks/layers/layer_backward_types.h"
56 #include "algorithms/neural_networks/layers/pooling3d/pooling3d_layer_types.h"
62 namespace neural_networks
89 class DAAL_EXPORT Input :
public layers::backward::Input
92 typedef layers::backward::Input super;
97 Input(
const Input& other);
105 virtual services::Collection<size_t> getGradientSize()
const;
108 virtual data_management::NumericTablePtr getAuxInputDimensions()
const = 0;
110 virtual services::Collection<size_t> getInputGradientSize(
const pooling3d::Parameter *parameter)
const;
112 size_t computeInputDimension(
size_t maskDim,
size_t kernelSize,
size_t padding,
size_t stride)
const;
120 class DAAL_EXPORT Result :
public layers::backward::Result
135 template <
typename algorithmFPType>
136 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
146 services::Status check(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
150 using interface1::Input;
151 using interface1::Result;
daal
Definition: algorithm_base_common.h:57
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:120