| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[Docs] Optimize document Chinese and English switching experience Co-authored-by: blian6<bin.lian@outlook.com> Co-authored-by: blian<lianbin@huawei.com> # message auto-generated for no-merge-commit merge: !267 merge dev into dev [Docs] Optimize document Chinese and English switching experience Created-by: blian Commit-by: blian6;blian Merged-by: ascend-robot Description: # Which issue(s) this PR fixes or accomplishes 1. 优化文档内容,并提供网页的中英文切换能力 2. 添加关键融合算子和关键API的说明文档 3. 后续优化点: a. 图片的路径需要移到公有路径(docs/figures),否则,会产生无法找到的问题,但是这个修改涉及面较多,后续提交PR。 b. 中文界面的切换按钮最好是英文。 # Purpose # Test Plan 本地生成 HTML 文档可使用以下命令: bash python -m pip install -r docs/requirements-docs.txt # 构建中英文 python docs/build_docs.py # 仅构建中文 SPHINX_LANGUAGE=zh sphinx-build -b html -c docs docs/zh docs/_build/zh/html # 仅构建英文 SPHINX_LANGUAGE=en sphinx-build -b html -c docs docs/en docs/_build/en/html 本地预览方法: python -m http.server 8080 --directory docs/_build - http://localhost:8080 → 自动跳转中文版 - http://localhost:8080/zh/html/index.html → 中文 - http://localhost:8080/en/html/index.html → 英文 # Test Report   See merge request: Ascend/MindIE-SD!267 | 2 个月前 | |
[Docs][RTD]Fix ReadTheDocs build to use zh/en source directories Co-authored-by: changetheway<guotaoyuan1@h-partners.com> # message auto-generated for no-merge-commit merge: !293 merge rtd_0513 into dev [Docs][RTD]Fix ReadTheDocs build to use zh/en source directories Created-by: changetheway Commit-by: changetheway Merged-by: ascend-robot Description: # Which issue(s) this PR fixes or accomplishes 无关issue,仅修正文档服务 # Purpose - 修复 ReadTheDocs 因python版本和Sphinx版本不匹配导致无法构建的问题。 修改内容: 1. .readthedocs.yaml:改用 python3.11 - 修复 ReadTheDocs 构建的文档首页显示英文目录而非中文目录的问题。 根因:ReadTheDocs 默认使用 docs/ 作为 Sphinx 源目录,首页渲染的是 docs/index.md,其 toctree caption 为英文("Getting Started"、"User Guide" 等)。而中文首页 docs/zh/index.md 的 toctree caption 为中文("快速开始"、"加速特性" 等),但 ReadTheDocs 未以其为构建源目录。 修改内容: 1. .readthedocs.yaml:改用 build.commands 自定义构建,分别用 docs/zh/ 和 docs/en/ 作为源目录构建中文和英文文档,根入口重定向到中文首页 2. docs/conf.py:根据 READTHEDOCS 环境变量动态设置语言切换器 URL,适配 ReadTheDocs 与本地构建的不同输出路径 3. docs/_templates/language-switcher.html 及其组件:改进 JS 路径解析,同时支持本地构建的 /html/ 路径和 ReadTheDocs 的 /zh/、/en/ 路径 # Test Plan 1. 合并后触发 ReadTheDocs 构建,观察构建日志是否成功 2. 访问 https://mindie-sd-docs.readthedocs.io/zh-cn/latest/ 确认自动跳转到中文首页 3. 检查中文首页左侧目录是否为中文标题("快速开始"、"加速特性" 等) 4. 检查英文首页左侧目录是否为英文标题("Getting Started"、"Feature Guides" 等) 5. 验证语言切换器在中英文页面间正确跳转 # Test Report https://mindie-sd-docs.readthedocs.io/zh-cn/latest/zh/index.html See merge request: Ascend/MindIE-SD!293 | 2 个月前 | |
[Docs][docs]Update quantization FIA operator description Co-authored-by: lanwangli<lanwangli@huawei.com> # message auto-generated for no-merge-commit merge: !428 merge 0704_mig_fia_to_mindiesd_docs into dev [Docs][docs]Update quantization FIA operator description Created-by: lanwangli Commit-by: lanwangli Merged-by: ascend-robot Description: # Which issue(s) this PR fixes or accomplishes TODO: Fixes #ISSUE ID # Purpose Update the FP8 Attention description in the quantization feature docs so the English and Chinese pages match the migrated FIA call path. This PR only changes the docs module: - Update docs/en/features/quantization.md to state that FP8 Attention uses torch.ops.mindiesd.fused_infer_attention_score_v2 and routes to the migrated repository implementation. - Update docs/zh/features/quantization.md with the matching Chinese description. - Remove a duplicated online quantization example block from both pages. # Test Plan - Run pre-commit on the diff between this branch and origin/dev. - Cover whitespace, EOF, spelling, and typos checks for the modified docs. - Check that the English and Chinese docs are updated consistently. # Test Report Executed and passed: bash pre-commit run --from-ref origin/dev --to-ref HEAD Result: Passed Docs site build was not executed. Suggested validation command: bash python -m pip install -r docs/requirements-docs.txt python -m sphinx -b html docs docs/_build/html See merge request: Ascend/MindIE-SD!428 | 18 天前 | |
squash Co-authored-by: w00955629<wangruonan14@huawei.com> # message auto-generated for no-merge-commit merge: !341 merge feature-power-cap into dev add feature: FA_power_cap and examples Created-by: w00955629 Commit-by: w00955629 Merged-by: ascend-robot Description: # Which issue(s) this PR fixes or accomplishes N/A # Purpose Address review comments for FA_Power_Cap documentation: - Align the FA_Power_Cap page title with other feature documents. - Add FA_Power_Cap entries to architecture and index documentation. - Keep Chinese and English documentation links consistent. # Test Plan - Check Markdown diff scope. - Build Chinese documentation with Sphinx. - Build English documentation with Sphinx. - Push branch and verify GitCode remote hooks. # Test Report - git diff --check: passed - SPHINX_LANGUAGE=zh python -m sphinx -b html docs/zh docs/_build/zh/html -c docs: passed - SPHINX_LANGUAGE=en python -m sphinx -b html docs/en docs/_build/en/html -c docs: passed - GitCode remote hooks: passed - markdownlint/pre-commit: not run because they are not installed locally See merge request: Ascend/MindIE-SD!341 | 1 个月前 | |
[Docs] refresh lint and dependency config, docker, docs Co-authored-by: weixin_44144262<lijinxi2@huawei.com> # message auto-generated for no-merge-commit merge: !243 merge dev into dev [Docs] refresh lint and dependency config, docker, docs Created-by: weixin_44144262 Commit-by: weixin_44144262 Merged-by: ascend-robot Description: # Which issue(s) this PR fixes or accomplishes > Fix part of #72 # Purpose This PR delivers five grouped changes: 1. add a 910B AArch64 docker build environment; 2. refresh repository lint/dependency inputs; 3. reorganize developer documentation and navigation; 4. align homepage, manuals, and tech report entrypoints; 5. consolidate governance skill routing and require proactive commit/PR draft output. # Test Plan 1. Review the new docker build files and README. 2. Review repository dependency and pre-commit configuration changes. 3. Review Chinese and English developer guide updates and navigation entrypoints. 4. Review homepage/manual/report entry changes. 5. Review AGENTS.md and .agents/skills/mindie-sd-community-governance/SKILL.md for routing and PR-drafting requirements. # Test Report  See merge request: Ascend/MindIE-SD!243 | 3 个月前 | |
[Docs]:修改文档资料 Co-authored-by: changetheway<guotaoyuan1@h-partners.com> # message auto-generated for no-merge-commit merge: !451 merge docker_0713 into dev [Docs]:修改文档资料 Created-by: changetheway Commit-by: changetheway Merged-by: ascend-robot Description: <!-- PR描述模板更新日期:20251224 --> # Which issue(s) this PR fixes or accomplishes > **如问题已解决,按照下方示例附上ISSUE单号 / Apply bug or request issue as follow if the solved**\ > Fixes #ISSUE ID\ > **Fixes关键字会自动关闭issue,如问题部分解决请不要使用Fixes,可以用下方标签替代\ > Fixes will automatically close issue, please use the following tag if only part of the issue is solved**\ > Fix part of #ISSUE ID # Purpose 1. 按照镜像发布规范修改tag命名 2. 修复CANN安装指导和链接中内容章节对不上的问题 3. 修复triton-ascend 3.2.1不在pypi源中导致的安装问题 4. 修复TTFHW扫出的缺少编译构建时的依赖包的问题 5. 统一文档内的链接在打开时是新建浏览器标签打开,不会覆盖原链接打开 # Test Plan > 设计了哪些测试内容,指导他人如何对你的PR进行测试\ > Apply information to show others your test design and how to test your Pull Request # Test Report See merge request: Ascend/MindIE-SD!451 | 7 天前 | |
[Docs] Optimize document Chinese and English switching experience Co-authored-by: blian6<bin.lian@outlook.com> Co-authored-by: blian<lianbin@huawei.com> # message auto-generated for no-merge-commit merge: !267 merge dev into dev [Docs] Optimize document Chinese and English switching experience Created-by: blian Commit-by: blian6;blian Merged-by: ascend-robot Description: # Which issue(s) this PR fixes or accomplishes 1. 优化文档内容,并提供网页的中英文切换能力 2. 添加关键融合算子和关键API的说明文档 3. 后续优化点: a. 图片的路径需要移到公有路径(docs/figures),否则,会产生无法找到的问题,但是这个修改涉及面较多,后续提交PR。 b. 中文界面的切换按钮最好是英文。 # Purpose # Test Plan 本地生成 HTML 文档可使用以下命令: bash python -m pip install -r docs/requirements-docs.txt # 构建中英文 python docs/build_docs.py # 仅构建中文 SPHINX_LANGUAGE=zh sphinx-build -b html -c docs docs/zh docs/_build/zh/html # 仅构建英文 SPHINX_LANGUAGE=en sphinx-build -b html -c docs docs/en docs/_build/en/html 本地预览方法: python -m http.server 8080 --directory docs/_build - http://localhost:8080 → 自动跳转中文版 - http://localhost:8080/zh/html/index.html → 中文 - http://localhost:8080/en/html/index.html → 英文 # Test Report   See merge request: Ascend/MindIE-SD!267 | 2 个月前 | |
[Docs][RTD]Fix ReadTheDocs build to use zh/en source directories Co-authored-by: changetheway<guotaoyuan1@h-partners.com> # message auto-generated for no-merge-commit merge: !293 merge rtd_0513 into dev [Docs][RTD]Fix ReadTheDocs build to use zh/en source directories Created-by: changetheway Commit-by: changetheway Merged-by: ascend-robot Description: # Which issue(s) this PR fixes or accomplishes 无关issue,仅修正文档服务 # Purpose - 修复 ReadTheDocs 因python版本和Sphinx版本不匹配导致无法构建的问题。 修改内容: 1. .readthedocs.yaml:改用 python3.11 - 修复 ReadTheDocs 构建的文档首页显示英文目录而非中文目录的问题。 根因:ReadTheDocs 默认使用 docs/ 作为 Sphinx 源目录,首页渲染的是 docs/index.md,其 toctree caption 为英文("Getting Started"、"User Guide" 等)。而中文首页 docs/zh/index.md 的 toctree caption 为中文("快速开始"、"加速特性" 等),但 ReadTheDocs 未以其为构建源目录。 修改内容: 1. .readthedocs.yaml:改用 build.commands 自定义构建,分别用 docs/zh/ 和 docs/en/ 作为源目录构建中文和英文文档,根入口重定向到中文首页 2. docs/conf.py:根据 READTHEDOCS 环境变量动态设置语言切换器 URL,适配 ReadTheDocs 与本地构建的不同输出路径 3. docs/_templates/language-switcher.html 及其组件:改进 JS 路径解析,同时支持本地构建的 /html/ 路径和 ReadTheDocs 的 /zh/、/en/ 路径 # Test Plan 1. 合并后触发 ReadTheDocs 构建,观察构建日志是否成功 2. 访问 https://mindie-sd-docs.readthedocs.io/zh-cn/latest/ 确认自动跳转到中文首页 3. 检查中文首页左侧目录是否为中文标题("快速开始"、"加速特性" 等) 4. 检查英文首页左侧目录是否为英文标题("Getting Started"、"Feature Guides" 等) 5. 验证语言切换器在中英文页面间正确跳转 # Test Report https://mindie-sd-docs.readthedocs.io/zh-cn/latest/zh/index.html See merge request: Ascend/MindIE-SD!293 | 2 个月前 | |
[Docs] refresh lint and dependency config, docker, docs Co-authored-by: weixin_44144262<lijinxi2@huawei.com> # message auto-generated for no-merge-commit merge: !243 merge dev into dev [Docs] refresh lint and dependency config, docker, docs Created-by: weixin_44144262 Commit-by: weixin_44144262 Merged-by: ascend-robot Description: # Which issue(s) this PR fixes or accomplishes > Fix part of #72 # Purpose This PR delivers five grouped changes: 1. add a 910B AArch64 docker build environment; 2. refresh repository lint/dependency inputs; 3. reorganize developer documentation and navigation; 4. align homepage, manuals, and tech report entrypoints; 5. consolidate governance skill routing and require proactive commit/PR draft output. # Test Plan 1. Review the new docker build files and README. 2. Review repository dependency and pre-commit configuration changes. 3. Review Chinese and English developer guide updates and navigation entrypoints. 4. Review homepage/manual/report entry changes. 5. Review AGENTS.md and .agents/skills/mindie-sd-community-governance/SKILL.md for routing and PR-drafting requirements. # Test Report  See merge request: Ascend/MindIE-SD!243 | 3 个月前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 2 个月前 | ||
| 2 个月前 | ||
| 18 天前 | ||
| 1 个月前 | ||
| 3 个月前 | ||
| 7 天前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 3 个月前 |