From 82e2feac825abd1e6cc4a08d99bc12d225993e8f Mon Sep 17 00:00:00 2001 From: yaohaolin Date: Thu, 20 Nov 2025 20:29:44 +0800 Subject: [PATCH] fix hetero compile error --- src/datasystem/common/device/ascend/ffts_dispatcher.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/datasystem/common/device/ascend/ffts_dispatcher.cpp b/src/datasystem/common/device/ascend/ffts_dispatcher.cpp index 3465000..29211e3 100644 --- a/src/datasystem/common/device/ascend/ffts_dispatcher.cpp +++ b/src/datasystem/common/device/ascend/ffts_dispatcher.cpp @@ -189,7 +189,6 @@ HcclResult FftsDispatcher::ConstructFftsSqe(rtFftsPlusSqe_t &fftsPlusSqe, uint16 // Identifies the communication task and optimizes the FFTS+ scheduling performance. (The RTS requires that the // AIV/AIC task be 0x5B. Otherwise, the task is 0x5A.) // 0x5A: identifies the communication task and optimizes the FFTS+ scheduling performance. - const uint8_t TASK_TYPE_AIV_AIC = 0x5B; const uint8_t TASK_TYPE_OTHER = 0x5A; fftsPlusSqe.subType = TASK_TYPE_OTHER; return HCCL_SUCCESS; -- Gitee