Pull Request已成功合入, 合并人@ascend-robot
(感谢 yeqm 的贡献)变更摘要
该 PR 修复了 Qwen3.5 示例文档中 fla-npu 运行包安装命令的文件名匹配模式错误。实际生成的运行包遵循 fla-npu-*.run 命名规则(如 fla-npu-fla_npu_linux-x86_64.run),而原文档错误地使用了 fla-npu_*.run,导致通配符无法匹配生成的包文件,安装命令执行失败。此次变更将文档中的命令修正为正确的模式。
主要改动
- 修正
examples/qwen3_5/README.md中的运行包匹配模式:将fla-npu_*.run更正为fla-npu-*.run,使通配符与实际生成的包名格式一致,确保安装命令能够正确工作。


代码审查
该 diff 仅对 examples/qwen3_5/README.md 第 106 行做了一处修改:将安装 fla-npu run 包的命令中的 glob 模式从 fla-npu_*.run 修正为 fla-npu-*.run,以匹配实际生成的 run 包文件名格式(如 fla-npu-fla_npu_linux-x86_64.run)。
经审查:
-
修改正确性:旧的
fla-npu_*.run使用下划线,无法匹配实际生成的文件名(使用连字符fla-npu-)。修正后的模式fla-npu-*.run可以正确匹配。这是一个纯粹的文档错误修复。 -
无残留旧模式:修改后该文件中不再存在旧的
fla-npu_错误模式。 -
无安全性/可靠性问题:该命令仅为本地安装指令中的 shell glob 展开,不涉及权限提升、密钥泄露、不安全的网络操作等安全风险。
-
无新增不一致性:该修改仅修正当前文件中的一个拼写错误,不会引入与其他未修改代码的新不一致性。
审查总结
| 优先级 | 数量 |
|---|---|
| P0 | 0 |
| P1 | 0 |
| P2 | 0 |
| P3 | 0 |
已审查文件:
examples/qwen3_5/README.md:无问题,修改正确。
整体风险判断:该变更为纯文档修复,无风险,可安全合入。
| 类型 | 数量 |
|---|---|
| 🔴 阻塞 | 0 |
| 🟡 建议 | 1 |
💬 仅评论


Thanks for your pull-request.
The full list of commands accepted by me can be found at here。
You can get sig-info at here
PR Approval Progress
✅ Congratulations! All modules have met the lgtm and approve requirements.
Module Approval Details
| module | lgtm status | approve status |
|---|---|---|
| repo-Ascend/MindSpeed-MM | ✅ 王海涛, liuxi_, wanglikai1019 (3/2) | ✅ 王海涛 (1/1) |
💡 Tip:
- Committer can comment
/approveor/lgtm- Commenting
/approveimplies both code review (lgtm) and intent to merge (approve)
CLA Signature Pass
ye_qm, thanks for your pull request. All authors of the commits have signed the CLA. 👍


ascend docs pipeline is running...


ascend docs pipeline is running...


/lgtm


/lgtm


🟡 Medium Priority
变更将 examples/qwen3_5/README.md 第 106 行的 fla-npu_*.run 修正为 fla-npu-*.run,但项目中还有两个文件存在完全相同的错误模式,未被本次 PR 覆盖:
examples/qwen3_6/README.md第 97 行:bash build_out/fla-npu_*.runexamples/mcore/qwen3_5/README.md第 100 行:bash build_out/fla-npu_*.run
这两处同样无法匹配生成的 run 包名(如 fla-npu-fla_npu_linux-x86_64.run),用户在按照这两个文档执行安装命令时会遇到相同的失败。本次 PR 仅修补了其中一个文件,导致同类文档之间存在不一致(两个文档仍是错误的旧模式,一个已修正)。
建议:将 examples/qwen3_6/README.md 第 97 行和 examples/mcore/qwen3_5/README.md 第 100 行的 fla-npu_*.run 同样修正为 fla-npu-*.run,保持所有文档中 fla-npu 安装命令一致。


| 阶段 | 任务名 | 状态 | 详情 |
|---|---|---|---|
| 编译构建 | Build | 🛑 | >>> |
| 恶意代码检查 | Antipoison | 🛑 | >>> |
| 编码安全与规范检查 | Only_doc_commit | ✅ | >>> |
| codeCheck_pre-commit | 🛑 | >>> | |
| pre-commit | 🛑 | >>> | |
| Compatibility_Interface | 🛑 | >>> | |
| 开源片段检查 | SCA | 🛑 | >>> |
| 开发者测试 | UT | 🛑 | >>> |
| ST | 🛑 | >>> | |
| UT-pool | 🛑 | >>> | |
| ST_pool | 🛑 | >>> | |
| 流水线 | PR-pipeline_MindSpeed-MM | ✅ | >>> |
- compile : 运行流水线
- retry : 重试流水线所有失败子任务
- retry <任务名> : 仅重试指定失败子任务
- stop : 停止流水线


Pull Request 已合并或已关闭。
If you want to solve this problem, you can click here to do it in the FAQs.


Pull Request 已合并或已关闭。
If you want to solve this problem, you can click here to do it in the FAQs.


What this PR does / why we need it?
Fix a typo in the Qwen3.5 README fla-npu installation command.
The generated fla-npu run package uses the
fla-npu-*.runnaming pattern, for examplebuild_out/fla-npu-fla_npu_linux-x86_64.run. The original README usedfla-npu_*.run, which cannot match the generated run package and causes the installation command to fail.Does this PR introduce any user-facing change?
Yes. This PR corrects the Qwen3.5 fla-npu installation command in the user documentation.
Documentation path:
examples/qwen3_5/README.mdHow was this patch tested?
self test