aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Types.h
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-05-21 17:14:36 +0100
committerManuel Bottini <manuel.bottini@arm.com>2020-05-22 12:31:03 +0100
commitd71d2be0ab380a2d1fbaf051e43b368330b4d27c (patch)
treee09220a6b7115bd6c4365e65bce2836642663a98 /arm_compute/core/Types.h
parent0ba7c3ac045b353d977b23c9de362e0e7e7a65ee (diff)
downloadComputeLibrary-d71d2be0ab380a2d1fbaf051e43b368330b4d27c.tar.gz
COMPMID-3069: Removing deprecated functions and classes from 20.05 release
Change-Id: Ic4d20995d6c6bb76d07113e86247bad2722e4e83 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3244 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/Types.h')
-rw-r--r--arm_compute/core/Types.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index d59bba6ff4..759ff07822 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -1195,74 +1195,6 @@ struct PoolingLayerInfo
*
* @param[in] pool_type Pooling type @ref PoolingType.
* @param[in] pool_size Pooling size, in elements, across x and y.
- * @param[in] pad_stride_info (Optional) Padding and stride information @ref PadStrideInfo
- * @param[in] exclude_padding (Optional) Strategy when accounting padding in calculations.
- * True will exclude padding while false will not (Used in AVG/L2 pooling to determine the pooling area).
- * Defaults to false;
- * @param[in] fp_mixed_precision (Optional) Use wider accumulators (32 bit instead of 16 for FP16) to improve accuracy.
- */
- ARM_COMPUTE_DEPRECATED_REL_REPLACE(20.02, PoolingLayerInfo(PoolingType, unsigned int, DataLayout, PadStrideInfo, bool, bool))
- explicit PoolingLayerInfo(PoolingType pool_type,
- unsigned int pool_size,
- PadStrideInfo pad_stride_info = PadStrideInfo(),
- bool exclude_padding = false,
- bool fp_mixed_precision = false)
- : pool_type(pool_type),
- pool_size(Size2D(pool_size, pool_size)),
- data_layout(DataLayout::UNKNOWN),
- pad_stride_info(pad_stride_info),
- exclude_padding(exclude_padding),
- is_global_pooling(false),
- fp_mixed_precision(fp_mixed_precision)
- {
- }
- /** Constructor
- *
- * @param[in] pool_type Pooling type @ref PoolingType.
- * @param[in] pool_size Pooling size, in elements, across x and y.
- * @param[in] pad_stride_info (Optional) Padding and stride information @ref PadStrideInfo
- * @param[in] exclude_padding (Optional) Strategy when accounting padding in calculations.
- * True will exclude padding while false will not (Used in AVG/L2 pooling to determine the pooling area).
- * Defaults to false;
- * @param[in] fp_mixed_precision (Optional) Use wider accumulators (32 bit instead of 16 for FP16) to improve accuracy.
- */
- ARM_COMPUTE_DEPRECATED_REL_REPLACE(20.02, PoolingLayerInfo(PoolingType, Size2D, DataLayout, PadStrideInfo, bool, bool))
- explicit PoolingLayerInfo(PoolingType pool_type,
- Size2D pool_size,
- PadStrideInfo pad_stride_info = PadStrideInfo(),
- bool exclude_padding = false,
- bool fp_mixed_precision = false)
- : pool_type(pool_type),
- pool_size(pool_size),
- data_layout(DataLayout::UNKNOWN),
- pad_stride_info(pad_stride_info),
- exclude_padding(exclude_padding),
- is_global_pooling(false),
- fp_mixed_precision(fp_mixed_precision)
- {
- }
- /** Constructor
- *
- * @note This constructor is used for global pooling
- *
- * @param[in] pool_type Pooling type @ref PoolingType.
- */
- ARM_COMPUTE_DEPRECATED_REL_REPLACE(20.02, PoolingLayerInfo(PoolingType, DataLayout))
- explicit PoolingLayerInfo(PoolingType pool_type)
- : pool_type(pool_type),
- pool_size(Size2D()),
- data_layout(DataLayout::UNKNOWN),
- pad_stride_info(PadStrideInfo(1, 1, 0, 0)),
- exclude_padding(false),
- is_global_pooling(true),
- fp_mixed_precision(false)
- {
- }
-
- /** Constructor
- *
- * @param[in] pool_type Pooling type @ref PoolingType.
- * @param[in] pool_size Pooling size, in elements, across x and y.
* @param[in] data_layout Data layout used by the layer @ref DataLayout
* @param[in] pad_stride_info (Optional) Padding and stride information @ref PadStrideInfo
* @param[in] exclude_padding (Optional) Strategy when accounting padding in calculations.