From db35345753e4ba81384c8a92ece6a8f598fd841a Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Mon, 8 Feb 2021 15:16:13 +0000 Subject: Integrate MLGO into CLGEMMLowpMatrixMultiplyCore for native kernel Resolves COMPMID-3846 Signed-off-by: SiCong Li Change-Id: Iad66f6dd7fa5b13ebace9f95fbc2fc4d677cf6a9 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5032 Tested-by: Arm Jenkins Reviewed-by: Gian Marco Iodice Reviewed-by: Pablo Marquez Tello Comments-Addressed: Arm Jenkins --- src/runtime/CL/functions/CLGEMM.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/runtime/CL/functions/CLGEMM.cpp') diff --git a/src/runtime/CL/functions/CLGEMM.cpp b/src/runtime/CL/functions/CLGEMM.cpp index a0aaabf5fe..3e4c604740 100644 --- a/src/runtime/CL/functions/CLGEMM.cpp +++ b/src/runtime/CL/functions/CLGEMM.cpp @@ -141,7 +141,7 @@ inline std::pair auto_select_gemm_config_r return { config.lhs_info, config.rhs_info }; } } - config = select_default_gemm_config_reshaped_only_rhs(query); + config = auto_heuristics::select_default_gemm_config_reshaped_only_rhs(query); ARM_COMPUTE_LOG_INFO_MSG_WITH_FORMAT_CORE("Use reshaped_only_rhs config from default heuristics: LHS info: %s ; RHS info: %s ", to_string(config.lhs_info).c_str(), to_string(config.rhs_info).c_str()); return { config.lhs_info, config.rhs_info }; } @@ -190,7 +190,7 @@ inline std::pair auto_select_gemm_config_r return { config.lhs_info, config.rhs_info }; } } - config = select_default_gemm_config_reshaped(query); + config = auto_heuristics::select_default_gemm_config_reshaped(query); ARM_COMPUTE_LOG_INFO_MSG_WITH_FORMAT_CORE("Use reshaped config from default heuristics: LHS info: %s ; RHS info: %s ", to_string(config.lhs_info).c_str(), to_string(config.rhs_info).c_str()); return { config.lhs_info, config.rhs_info }; } -- cgit v1.2.1