24 #ifndef __AVERAGE_POOLING1D_LAYER_BACKWARD_TYPES_H__
25 #define __AVERAGE_POOLING1D_LAYER_BACKWARD_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/pooling1d/pooling1d_layer_backward_types.h"
33 #include "algorithms/neural_networks/layers/pooling1d/average_pooling1d_layer_types.h"
39 namespace neural_networks
43 namespace average_pooling1d
67 class DAAL_EXPORT Input :
public pooling1d::backward::Input
70 typedef pooling1d::backward::Input super;
81 Input(
const Input& other);
88 using layers::backward::Input::get;
89 using layers::backward::Input::set;
97 DAAL_DEPRECATED data_management::NumericTablePtr
get(LayerDataId id)
const;
104 DAAL_DEPRECATED
void set(LayerDataId
id,
const data_management::NumericTablePtr &ptr);
114 DAAL_DEPRECATED services::Status check(
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
120 DAAL_DEPRECATED_VIRTUAL
virtual data_management::NumericTablePtr getAuxInputDimensions()
const DAAL_C11_OVERRIDE;
129 class DAAL_EXPORT Result :
public pooling1d::backward::Result
132 DECLARE_SERIALIZABLE_CAST(Result);
146 using layers::backward::Result::get;
151 using layers::backward::Result::set;
162 template <
typename algorithmFPType>
163 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
174 DAAL_DEPRECATED services::Status check(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
int method)
const DAAL_C11_OVERRIDE;
181 template<
typename Archive,
bool onDeserialize>
182 services::Status serialImpl(Archive *arch)
184 return daal::algorithms::Result::serialImpl<Archive, onDeserialize>(arch);
187 typedef services::SharedPtr<Result> ResultPtr;
190 using interface1::Input;
191 using interface1::Result;
192 using interface1::ResultPtr;
daal::algorithms::neural_networks::layers::average_pooling1d::backward::interface1::Input
Input objects for the backward average 1D pooling layer
Definition: average_pooling1d_layer_backward_types.h:67
daal::algorithms::neural_networks::layers::average_pooling1d::LayerDataId
LayerDataId
Identifiers of input objects for the backward average 1D pooling layer and results for the forward av...
Definition: average_pooling1d_layer_types.h:62
daal::algorithms::neural_networks::layers::average_pooling1d::backward::interface1::Result
Provides methods to access the result obtained with the compute() method of the backward average 1D p...
Definition: average_pooling1d_layer_backward_types.h:129