From 68f2e7f117a1c1032dfe8bb3944884f650fdaea1 Mon Sep 17 00:00:00 2001 From: ivanshan_8170 Date: Tue, 26 Aug 2025 22:28:55 +0800 Subject: [PATCH] test fa --- src/ops_infer/self_attention/self_attention_operation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ops_infer/self_attention/self_attention_operation.cpp b/src/ops_infer/self_attention/self_attention_operation.cpp index e7262743..56174f9a 100644 --- a/src/ops_infer/self_attention/self_attention_operation.cpp +++ b/src/ops_infer/self_attention/self_attention_operation.cpp @@ -57,7 +57,7 @@ template <> Status CreateOperation(const infer::SelfAttentionParam &opParam, Ope << ", clampType:" << opParam.clampType << ", kvcacheCfg:" << opParam.kvcacheCfg << ", scaleType:" << opParam.scaleType << ", inputLayout:" << opParam.inputLayout << ", mlaVHeadSize:" << opParam.mlaVHeadSize << ", windowSize:" << opParam.windowSize - << ", cacheType: " << opParam.cacheType; + << ", cacheType: " << opParam.cacheType << ", kernelType:" << opParam.kernelType; if (opParam.headNum <= 0) { ATB_LOG(ERROR) << "headNum should be greater than zero!"; return ERROR_INVALID_PARAM; -- Gitee