aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Types.h
diff options
context:
space:
mode:
authorramy.elgammal@arm.com <ramy.elgammal@arm.com>2023-06-16 20:45:48 +0100
committerramy.elgammal@arm.com <ramy.elgammal@arm.com>2023-06-28 11:22:37 +0100
commit71040f931d92ff5fd7d6b33704175eacfbe2c2ee (patch)
tree090a825bcd9a73639b507f8eeb5df5be591a751d /arm_compute/core/Types.h
parent604a35bdd9cfa8c4221ac146fb29b9166d78d045 (diff)
downloadComputeLibrary-71040f931d92ff5fd7d6b33704175eacfbe2c2ee.tar.gz
Fix doxygen warnings
Resolves: COMPMID-6312 Signed-off-by: ramy.elgammal@arm.com <ramy.elgammal@arm.com> Change-Id: I9f68ccd2edb8c4d03fec19e6b9c29609d4833342 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9806 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/Types.h')
-rw-r--r--arm_compute/core/Types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index fd45bbaa1e..8a1d189e8e 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -677,7 +677,7 @@ public:
* @param[in] stride_y (Optional) Stride, in elements, across y. Defaults to 1.
* @param[in] pad_x (Optional) Padding, in elements, across x. Defaults to 0.
* @param[in] pad_y (Optional) Padding, in elements, across y. Defaults to 0.
- * @param[in] round (Optional) Dimensions rounding. Defaults to @ref FLOOR.
+ * @param[in] round (Optional) Dimensions rounding. Defaults to @ref DimensionRoundingType::FLOOR.
*/
PadStrideInfo(unsigned int stride_x = 1, unsigned int stride_y = 1,
unsigned int pad_x = 0, unsigned int pad_y = 0,
@@ -1336,7 +1336,7 @@ struct Pooling3dLayerInfo
* 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.
- * @param[in] round_type (Optional) Dimensions rounding. Defaults to @ref FLOOR
+ * @param[in] round_type (Optional) Dimensions rounding. Defaults to @ref DimensionRoundingType::FLOOR
*/
explicit Pooling3dLayerInfo(PoolingType pool_type,
unsigned int pool_size,
@@ -1366,7 +1366,7 @@ struct Pooling3dLayerInfo
* 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.
- * @param[in] round_type (Optional) Dimensions rounding. Defaults to @ref FLOOR
+ * @param[in] round_type (Optional) Dimensions rounding. Defaults to @ref DimensionRoundingType::FLOOR
*/
explicit Pooling3dLayerInfo(PoolingType pool_type,
Size3D pool_size,