文件最后提交记录最后更新时间
[inductor] sync from v2.7.1, commit id 053355ffedb152a5509ee48777e9dfb62c44cf8f Co-authored-by: Stonexx<sheny1xuan@163.com> Co-authored-by: ascend-robot<zhongyuanke@huawei.com> # message auto-generated for no-merge-commit merge: !33549 merge syncbranch into v2.7.1-26.0.0 [inductor] sync from v2.7.1, commit id 053355ffedb152a5509ee48777e9dfb62c44cf8f Created-by: stonexxx Commit-by: Stonexx;ascend-robot Merged-by: ascend-robot Description: 1. sync from v2.7.1, commit id 053355ffedb152a5509ee48777e9dfb62c44cf8f 2. cherry-pick strengthen autotune profiling tenacity See merge request: Ascend/pytorch!335491 个月前
[inductor] sync from v2.7.1, commit id 053355ffedb152a5509ee48777e9dfb62c44cf8f Co-authored-by: Stonexx<sheny1xuan@163.com> Co-authored-by: ascend-robot<zhongyuanke@huawei.com> # message auto-generated for no-merge-commit merge: !33549 merge syncbranch into v2.7.1-26.0.0 [inductor] sync from v2.7.1, commit id 053355ffedb152a5509ee48777e9dfb62c44cf8f Created-by: stonexxx Commit-by: Stonexx;ascend-robot Merged-by: ascend-robot Description: 1. sync from v2.7.1, commit id 053355ffedb152a5509ee48777e9dfb62c44cf8f 2. cherry-pick strengthen autotune profiling tenacity See merge request: Ascend/pytorch!335491 个月前
model train dynamoic tensor guard deal Co-authored-by: crazyDannyBoy<xudezheng1@huawei.com> # message auto-generated for no-merge-commit merge: !31918 merge v2.7.1_dtsSlice into v2.7.1 model train dynamoic tensor guard deal Created-by: crazyDannyBoy Commit-by: crazyDannyBoy Merged-by: ascend-robot Description: <!-- PR描述模板更新日期:20260203 --> # 【合入来源】 > <font color="red">**如有社区issue,请关联issue链接**</font>\ > <font color="red">**请勿携带内部流程信息(需求链接、问题单、内部issue等)**</font> - [ ] 需求 - [ ] 问题单 - [ ] issue/工单 - [ ] 重构优化 - [ ] 资料更新 # 【修改方案】 > 请描述修改内容的具体实现,涉及哪些组件之间进行交互,可以用1、2、3、...进行罗列\ > 如果是需求或者重构类的PR,需要补充详细设计文档(说明上下游组件关系、时序图、类图、DFX能力等内容) # 【资料变更】 > 请确认是否涉及资料变更。如涉及,需要在PR中体现,并简要说明修改内容。如不涉及,需填写“不涉及” # 【接口变更】 > 请确认是否涉及跨代码仓或者客户面可见的接口变更。如涉及,需要详细说明接口以及对应的变更内容,同时需要在资料中体现。如不涉及,需填写“不涉及” # 【功能验证】 > 说明测试场景,测试方法。如果本次测试方式与常规单元测试不同,请详细说明您的测试步骤\ > 新增/变更内容是否已新增/适配UT测试用例看护,并补充测试自验证截图 # 【CheckList】 > PR提交人对以下CheckList自检项进行全量自检,自检通过或不涉及,均修改 [ ] 为 [x] - [ ] 代码注释完备,正确记录错误日志 - [ ] 代码实现进行了返回值、空指针等校验 - [ ] PR标题正确使用类型标签,如:feat、fix、refactor、docs、test等 - [ ] PR持续集成流水线(CI)执行通过,代码检查无异常 See merge request: Ascend/pytorch!319182 个月前
【inductor】Add Catlass backend Co-authored-by: shi-bibibi99<shiyufeng8@huawei.com> # message auto-generated for no-merge-commit merge: !28757 merge 1227_catlass_v2.7.1 into v2.7.1 【inductor】Add Catlass backend Created-by: shi-yufeng99 Commit-by: shi-bibibi99 Merged-by: ascend-robot Description: 【inductor】Add Catlass backend <!-- Thanks for sending a pull request! --> **What type of PR is this?** > /kind feature **What does this PR do / why do we need it**: Add catlass backend for torch.mm, torch.bmm, and torch.addmm when enable compiling in max_autotune mode. Its usage is basically equal to the cutlass backend for NVIDIA GPU. An example to enable catlass backend for torch.compile: ``` # git clone https://gitee.com/ascend/catlass.git /tmp/catlass import torch import torch_npu from torch._inductor import config from torch_npu._inductor import config as npu_config config.max_autotune = True config.max_autotune_gemm_backends = "CATLASS,ATen" npu_config.catlass.catlass_dir = /tmp/catlass npu_config.catlass.catlass_max_profiling_configs = 4 ``` **Which issue(s) this PR fixes**: <!-- *Automatically closes linked issue when PR is merged. Usage: Fixes #<issue number>, or Fixes (paste link of issue). --> Fixes # **Special notes for your reviewers**: See merge request: Ascend/pytorch!287574 个月前
添加图优化pass Co-authored-by: zhoujinning<zhoujinning2@huawei.com> # message auto-generated for no-merge-commit merge: !28809 merge v2.7.1_3 into v2.7.1 添加图优化pass Created-by: zhoujinning Commit-by: zhoujinning Merged-by: ascend-robot Description: 添加图优化pass See merge request: Ascend/pytorch!288094 个月前
!22607 【inductor】support 2.7.1 Merge pull request !22607 from 杜承昆/inductor-271-new 10 个月前
【inductor】Add Catlass backend Co-authored-by: shi-bibibi99<shiyufeng8@huawei.com> # message auto-generated for no-merge-commit merge: !28757 merge 1227_catlass_v2.7.1 into v2.7.1 【inductor】Add Catlass backend Created-by: shi-yufeng99 Commit-by: shi-bibibi99 Merged-by: ascend-robot Description: 【inductor】Add Catlass backend <!-- Thanks for sending a pull request! --> **What type of PR is this?** > /kind feature **What does this PR do / why do we need it**: Add catlass backend for torch.mm, torch.bmm, and torch.addmm when enable compiling in max_autotune mode. Its usage is basically equal to the cutlass backend for NVIDIA GPU. An example to enable catlass backend for torch.compile: ``` # git clone https://gitee.com/ascend/catlass.git /tmp/catlass import torch import torch_npu from torch._inductor import config from torch_npu._inductor import config as npu_config config.max_autotune = True config.max_autotune_gemm_backends = "CATLASS,ATen" npu_config.catlass.catlass_dir = /tmp/catlass npu_config.catlass.catlass_max_profiling_configs = 4 ``` **Which issue(s) this PR fixes**: <!-- *Automatically closes linked issue when PR is merged. Usage: Fixes #<issue number>, or Fixes (paste link of issue). --> Fixes # **Special notes for your reviewers**: See merge request: Ascend/pytorch!287574 个月前