文件最后提交记录最后更新时间
common目录结构整改 Co-authored-by: hello_simida<wangyi206@huawei.com> # message auto-generated for no-merge-commit merge: !5133 merge master into master common目录结构整改 Created-by: hello_simida Commit-by: hello_simida Merged-by: cann-robot Description: ## 描述 完成 common 目录结构调整,并适配所有 CMake 和源码引用路径。 ## 关联的Issue Closes #2369 ## 测试 - 已通过单算子编译验证:bash build.sh --pkg --soc=ascend910b --ops=all_gather_matmul_v2 - build_out/ 已成功生成 .run 包 ## 文档更新 无 ## 类型标签 - [ ] 🐛 Bug 修复 - [ ] ✨ 新特性 - [ ] ⚡ 性能优化 - [x] ♻️ 重构 - [ ] 🧪 测试 - [ ] 📦 构建/CI - [ ] 🔧 配置变更 - [ ] 📝 文档更新 - [ ] ⬆️ 依赖升级 - [ ] 🔒 安全修复 - [ ] 🧹 代码清理 - [ ] ❓ 其他,请描述: See merge request: cann/ops-transformer!513318 天前
Add the AI CPU implementation of FfnWorkerScheduler and AttentionWorkerScheduler Co-authored-by: @ding-jing12<dingjing19@huawei.com> # message auto-generated for no-merge-commit merge: !1076 merge atten_ffn_op into master Add the AI CPU implementation of FfnWorkerScheduler and AttentionWorkerScheduler Created-by: Ding_Jing Commit-by: @ding-jing12 Merged-by: cann-robot Description: ## 描述 <!--在这里详细描述你的改动,包括改动的原因和所采取的方法。--> Add the AI CPU implementation of FfnWorkerScheduler and AttentionWorkerScheduler ## 关联的Issue <!-- 如果这个PR是为了解决特定的Issue,请在这里提供Issue链接。例如:关联Issue #000--> <!-- 如果这个PR是为了解决特定的问题单,请在这里描述问题单单号。--> ## 测试 <!--描述进行了哪些测试来验证你的改动。包括但不限于二级冒烟、算子泛化等。--> ``` 功能验证:AttentionWorkerScheduler [2026-01-28 11:32:27] [2026-01-28 11:32:27] Start to run example,name:attention_worker_scheduler mode:eager [2026-01-28 11:32:27] Start compile and run example file: ../attention/attention_worker_scheduler/examples/test_aclnn_inplace_attention_worker_scheduler.cpp [2026-01-28 11:32:27] pkg_mode:cust vendor_name:custom [2026-01-28 11:32:33] micro_batch_id = 0. [2026-01-28 11:32:33] run test_aclnn_attention_worker_scheduler, execute samples success [2026-01-28 11:32:33] Example completed successfully 功能验证:FfnWorkerScheduler [2026-01-28 11:40:44] [2026-01-28 11:40:44] Start to run example,name:ffn_worker_scheduler mode:eager [2026-01-28 11:40:44] Start compile and run example file: ../ffn/ffn_worker_scheduler/examples/test_aclnn_inplace_ffn_worker_scheduler.cpp [2026-01-28 11:40:44] pkg_mode:cust vendor_name:custom [2026-01-28 11:40:50] Init ffn success, token_info_buf_size=192,token_data_buf_size= 1024. [2026-01-28 11:40:50] layer_ids_buf_size = 8. [2026-01-28 11:40:50] session_ids_buf_size = 8. [2026-01-28 11:40:50] micro_batch_ids_buf_size = 8. [2026-01-28 11:40:50] expert_ids_buf_size = 80. [2026-01-28 11:40:50] layer_ids[0] is: 55 [2026-01-28 11:40:50] layer_ids[1] is: 55 [2026-01-28 11:40:50] session_ids[0] is: 0 [2026-01-28 11:40:50] session_ids[1] is: 1 [2026-01-28 11:40:50] micro_batch_ids[0] is: 0 [2026-01-28 11:40:50] micro_batch_ids[1] is: 0 [2026-01-28 11:40:50] expert_ids[0] is: 0 [2026-01-28 11:40:50] expert_ids[1] is: 1 [2026-01-28 11:40:50] expert_ids[2] is: 2 [2026-01-28 11:40:50] expert_ids[3] is: 3 [2026-01-28 11:40:50] expert_ids[4] is: 4 [2026-01-28 11:40:50] expert_ids[5] is: 5 [2026-01-28 11:40:50] expert_ids[6] is: 6 [2026-01-28 11:40:50] expert_ids[7] is: 7 [2026-01-28 11:40:50] expert_ids[8] is: 8 [2026-01-28 11:40:50] expert_ids[9] is: 9 [2026-01-28 11:40:50] expert_ids[10] is: 0 [2026-01-28 11:40:50] expert_ids[11] is: 1 [2026-01-28 11:40:50] expert_ids[12] is: 2 [2026-01-28 11:40:50] expert_ids[13] is: 3 [2026-01-28 11:40:50] expert_ids[14] is: 4 [2026-01-28 11:40:50] expert_ids[15] is: 5 [2026-01-28 11:40:50] expert_ids[16] is: 6 [2026-01-28 11:40:50] expert_ids[17] is: 7 [2026-01-28 11:40:50] expert_ids[18] is: 8 [2026-01-28 11:40:50] expert_ids[19] is: 9 [2026-01-28 11:40:50] run test_aclnn_ffn_worker_scheduler, execute samples success [2026-01-28 11:40:50] Example completed successfully ``` ## 文档更新 <!--如果这个PR包含文档的更新,请在这里指出。例如:更新了README.md文件。--> Update the README.md files in attention/attention_worker_scheduler/ and ffn/ffn_worker_scheduler/, adding usage instructions ## 类型标签 <!-- [x] 表示选中 --> - [ ] Bug修复 - [x] 新特性 - [ ] 性能优化 - [ ] 文档更新 - [ ] 其他,请描述: See merge request: cann/ops-transformer!10764 个月前