From cbbb03813b79b7f0274b18436a78a79ff31e469e Mon Sep 17 00:00:00 2001 From: ramelg01 Date: Fri, 17 Sep 2021 17:36:57 +0100 Subject: Provide logging for configure functions in all NEON functions Partially Resolves: COMPMID-4718 Signed-off-by: Ramy Elgammal Change-Id: I655268c57fa126d9c99981c49d345a3aac75646e Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6286 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez Tello Reviewed-by: SiCong Li --- src/common/utils/Log.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/common/utils/Log.h') diff --git a/src/common/utils/Log.h b/src/common/utils/Log.h index a9d0d79876..5b049d0de6 100644 --- a/src/common/utils/Log.h +++ b/src/common/utils/Log.h @@ -138,7 +138,7 @@ logParamsImpl(std::vector &data_registry, const std::tuple & * detecting T as an abstract data type when passing any of these parameters as L-value reference * to an abstract type. * - * @return Vector of the parameters' data in a string format + * @return Vector of the parameters' data in a string format */ template const std::vector logParams(Ts &&... ins) @@ -156,9 +156,9 @@ const std::vector logParams(Ts &&... ins) * It is Inline to avoid the redefinition of this function each time this header is included * * @param[in] in_params_str Constant reference to a string consists of the names of the input parameters provided - * as:ARM_COMPUTE_LOG_PARAMS(src0, src1) the params_names = "src0, src1" + * as:ARM_COMPUTE_LOG_PARAMS(src0, src1) the params_names = "src0, src1" * - * @return Vector of strings containing all the names of the input parameters + * @return Vector of strings containing all the names of the input parameters */ inline const std::vector getParamsNames(const std::string &in_params_str) { @@ -188,9 +188,9 @@ inline const std::vector getParamsNames(const std::string &in_param * @param[in] params_names Constant reference to a string consists of the the input parameters' names * provided e.g.: ARM_COMPUTE_LOG_PARAMS(src0, src1) then params_names = "src0, src1" * @param[in] data_registry Constant reference to a registry of all parameters' data in string format, - * stringnized by arm_compute::to_string() + * stringnized by arm_compute::to_string() * - * @return Log message string to be displayed + * @return Log message string to be displayed */ inline const std::string constructDataLog(const std::vector ¶ms_names, const std::vector &data_registry) -- cgit v1.2.1