aboutsummaryrefslogtreecommitdiff
path: root/src/common/utils/Log.h
diff options
context:
space:
mode:
authorramelg01 <ramy.elgammal@arm.com>2021-09-17 17:36:57 +0100
committerramy.elgammal <ramy.elgammal@arm.com>2021-09-22 09:44:25 +0000
commitcbbb03813b79b7f0274b18436a78a79ff31e469e (patch)
treea80e529e419ddff1ef2f5fa72dfa37d29bf53977 /src/common/utils/Log.h
parent3ae3d88c1a305ef4fc0beed8fda3cfc39ddb2ae8 (diff)
downloadComputeLibrary-cbbb03813b79b7f0274b18436a78a79ff31e469e.tar.gz
Provide logging for configure functions in all NEON functions
Partially Resolves: COMPMID-4718 Signed-off-by: Ramy Elgammal <ramy.elgammal@arm.com> Change-Id: I655268c57fa126d9c99981c49d345a3aac75646e Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6286 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Marquez Tello <pablo.tello@arm.com> Reviewed-by: SiCong Li <sicong.li@arm.com>
Diffstat (limited to 'src/common/utils/Log.h')
-rw-r--r--src/common/utils/Log.h10
1 files changed, 5 insertions, 5 deletions
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<std::string> &data_registry, const std::tuple<Tp...> &
* 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 <typename... Ts>
const std::vector<std::string> logParams(Ts &&... ins)
@@ -156,9 +156,9 @@ const std::vector<std::string> 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<std::string> getParamsNames(const std::string &in_params_str)
{
@@ -188,9 +188,9 @@ inline const std::vector<std::string> 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<std::string> &params_names,
const std::vector<std::string> &data_registry)