24 #ifndef __POOLING2D_LAYER_FORWARD_TYPES_H__
25 #define __POOLING2D_LAYER_FORWARD_TYPES_H__
27 #include "algorithms/algorithm.h"
28 #include "data_management/data/tensor.h"
29 #include "data_management/data/homogen_tensor.h"
30 #include "data_management/data/homogen_numeric_table.h"
31 #include "services/daal_defines.h"
32 #include "algorithms/neural_networks/layers/layer_forward_types.h"
33 #include "algorithms/neural_networks/layers/pooling2d/pooling2d_layer_types.h"
39 namespace neural_networks
66 class DAAL_EXPORT Input :
public layers::forward::Input
69 typedef layers::forward::Input super;
80 Input(
const Input& other);
89 DAAL_DEPRECATED_VIRTUAL
virtual const services::Collection<size_t> getWeightsSizes(
const layers::Parameter *parameter)
const DAAL_C11_OVERRIDE;
96 DAAL_DEPRECATED_VIRTUAL
virtual const services::Collection<size_t> getBiasesSizes(
const layers::Parameter *parameter)
const DAAL_C11_OVERRIDE;
106 DAAL_DEPRECATED services::Status check(
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
116 class DAAL_EXPORT Result :
public layers::forward::Result
123 DAAL_DEPRECATED Result();
134 DAAL_DEPRECATED_VIRTUAL
virtual const services::Collection<size_t> getValueSize(
const services::Collection<size_t> &inputSize,
135 const daal::algorithms::Parameter *par,
const int method)
const DAAL_C11_OVERRIDE;
145 template <
typename algorithmFPType>
146 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
157 services::Status check(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
163 DAAL_DEPRECATED
size_t computeValueDimension(
size_t dataDim,
size_t kernelSize,
size_t padding,
size_t stride)
const;
168 DAAL_DEPRECATED
void computeValueDimensions(services::Collection<size_t> &dims,
const Parameter *param)
const;
173 DAAL_DEPRECATED data_management::NumericTablePtr createAuxInputDimensions(
const services::Collection<size_t> &dataDims)
const;
177 using interface1::Input;
178 using interface1::Result;
daal::algorithms::neural_networks::layers::pooling2d::forward::interface1::Input
Input objects for the forward 2D pooling layer
Definition: pooling2d_layer_forward_types.h:66
daal::algorithms::neural_networks::layers::pooling2d::forward::interface1::Result
Provides methods to access the result obtained with the compute() method of the forward 2D pooling la...
Definition: pooling2d_layer_forward_types.h:116