文件最后提交记录最后更新时间
Profiler: adapt to the worker process name change of vllm Co-authored-by: z30043230<zhaiyibo@h-partners.com> # message auto-generated for no-merge-commit merge: !27535 merge main into master Profiler: adapt to the worker process name change of vllm Created-by: zyb_230 Commit-by: z30043230 Merged-by: ascend-robot Description: <!-- Thanks for sending a pull request! --> **What type of PR is this?** > Uncomment only one /kind <> line, hit enter to put that in a new line, and remove leading whitespaces from that line: > > /kind bug > /kind task > /kind feature /kind bug **What does this PR do / why do we need it**: vllm 11.0实际业务进程名字为EngineCore_DPxx然后代码会拦截,最后不会创建共享内存,无法使用msmonitor功能 **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 # 去掉进程名为EngineCore就return False的代码 ![image.png](https://raw.gitcode.com/user-images/assets/7404318/a9e080ab-a04b-45d2-98d0-976e8b277728/image.png 'image.png') 已和测试一起验证修改没问题 **Special notes for your reviewers**: See merge request: Ascend/pytorch!275355 个月前
【bugfix】Fixed a bug that could cause an exception when calling prof backend stop without having invoked the profile object after initialization. Co-authored-by: xieanran<694099604@qq.com> # message auto-generated for no-merge-commit merge: !26160 merge master into master 【bugfix】Fixed a bug that could cause an exception when calling prof backend stop without having invoked the profile object after initialization. Created-by: SoraAzzz Commit-by: xieanran Merged-by: ascend-robot Description: <!-- Thanks for sending a pull request! --> **What type of PR is this?** > Uncomment only one /kind <> line, hit enter to put that in a new line, and remove leading whitespaces from that line: > > /kind bug > /kind task > /kind feature **What does this PR do / why do we need it**: 修复profile初始化后未调用场景下析构call prof stop failed错误 **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!261606 个月前
!21044 [feature-master]he profiler has added the host_sys interface Merge pull request !21044 from 虞良斌/host_sys_master 1 年前
!18158 [PROFILING]pta mstx support dataloader and save ckpt duration Merge pull request !18158 from 梅飞要/mm_tx 1 年前
!22796 [torch_master]动态Profiling中msmonitor环境变量名更改 Merge pull request !22796 from yuliangbin/monitor_master 10 个月前
!18457 add profiler warmup on branch master Merge pull request !18457 from Mrtutu/warmup_master 1 年前
!13081 [PROF] Add gc detect to profiler Merge pull request !13081 from wangjie/gc_detect_master 1 年前
profiler use local time, not utc Co-authored-by: hehongzhe<935062458@qq.com> # message auto-generated for no-merge-commit merge: merge master into master profiler use local time, not utc Created-by: hhz0 Commit-by: hehongzhe Merged-by: ascend-robot Description: <!-- Thanks for sending a pull request! --> **What type of PR is this?** > Uncomment only one /kind <> line, hit enter to put that in a new line, and remove leading whitespaces from that line: > > /kind bug > /kind task > /kind feature **What does this PR do / why do we need it**: pytorch profiler采集解析所用到的时间使用本地时间,不转化为utc时间,与msprof保持一致 **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!248648 个月前
profiler: set the msmonitor status to uninitialized when the polling subprocess ends Co-authored-by: z30043230<zhaiyibo@h-partners.com> # message auto-generated for no-merge-commit merge: !27269 merge main into master profiler: set the msmonitor status to uninitialized when the polling subprocess ends Created-by: zyb_230 Commit-by: z30043230 Merged-by: ascend-robot Description: <!-- Thanks for sending a pull request! --> **What type of PR is this?** > Uncomment only one /kind <> line, hit enter to put that in a new line, and remove leading whitespaces from that line: > > /kind bug > /kind task > /kind feature /kind bug **What does this PR do / why do we need it**: 之前修改上报方式为实际业务进程上报状态,而不是监控子进程,然后在最后进程结束时finalize的时候会重置状态,这个重置状态是所有进程都会调用的,不对,应该只需要重置一次,不然有的进程提前结束(即使是非业务进程)就会提前把状态置为Uninitialized,导致后面所有命令无效 **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 # ![image.png](https://raw.gitcode.com/user-images/assets/7404318/d5cdcb2c-fac8-47ce-a44e-34093d61ed8d/image.png 'image.png') ![image.png](https://raw.gitcode.com/user-images/assets/7404318/14ad3d1b-23f7-4403-b65c-9632d67ccbd8/image.png 'image.png') **Special notes for your reviewers**: See merge request: Ascend/pytorch!272695 个月前
[torch_master]修复profiler cann parser校验CANN侧文件未try-except问题 Co-authored-by: yu-liang-bin<y1416490440@163.com> # message auto-generated for no-merge-commit merge: !26278 merge bug_fix_cann_parser into master [torch_master]修复profiler cann parser校验CANN侧文件未try-except问题 Created-by: yu_liangbin Commit-by: yu-liang-bin Merged-by: ascend-robot Description: <!-- Thanks for sending a pull request! --> **What type of PR is this?** > Uncomment only one /kind <> line, hit enter to put that in a new line, and remove leading whitespaces from that line: > > /kind bug > /kind task > /kind feature **What does this PR do / why do we need it**: cann_parser中进行了PROF_XXX文件夹的属主和权限校验,导致的异常会被最外层的try-except捕获,会使得CPU侧数据无法解析,异常需要在cann_parser中提前抛出 **Which issue(s) this PR fixes**: 在cann_parser的PROF_XXX文件夹的属主和权限校验处try-except捕获 <!-- *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!262786 个月前
!23944 [profiler]support thread Merge pull request !23944 from hhz886/master 9 个月前
!18958 [PROF] Profiler bugfix for CannPackageManager Merge pull request !18958 from wangjie/profiler_fix_cann_manager_master 1 年前
!13129 profiler non-public api modify Merge pull request !13129 from chenzhinan/master-local 1 年前