{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":65600975,"defaultBranch":"main","name":"pytorch","ownerLogin":"pytorch","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-08-13T05:26:41.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/21003710?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1716453538.0","currentOid":""},"activityList":{"items":[{"before":null,"after":"af3288447c5b4e1dd136c54c77b7cb5defbd75a2","ref":"refs/heads/gh/fffrog/11/orig","pushedAt":"2024-05-23T08:35:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"FFFrog","name":"Jiawei Li","path":"/FFFrog","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/85333600?s=80&v=4"},"commit":{"message":"Make TraceUtils.h to be device-agnostic\n\nghstack-source-id: b64ba140cb1999e4e77b7a7643958e3c7b76e387\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126969","shortMessageHtmlLink":"Make TraceUtils.h to be device-agnostic"}},{"before":null,"after":"4f14282e350a6c9a0a280083c286f7d672fa3ebd","ref":"refs/heads/gh/fffrog/11/base","pushedAt":"2024-05-23T08:35:36.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"FFFrog","name":"Jiawei Li","path":"/FFFrog","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/85333600?s=80&v=4"},"commit":{"message":"Revert \"[inductor][cpp] GEMM template (infra and fp32) (#124021)\"\n\nThis reverts commit 2ac33a9f663269e6060246337c776a20c3b7c858.\n\nReverted https://github.com/pytorch/pytorch/pull/124021 on behalf of https://github.com/huydhn due to Sorry for reverting your change but I think it has a land race and failing in trunk https://hud.pytorch.org/pytorch/pytorch/commit/2ac33a9f663269e6060246337c776a20c3b7c858 ([comment](https://github.com/pytorch/pytorch/pull/124021#issuecomment-2126016522))","shortMessageHtmlLink":"Revert \"[inductor][cpp] GEMM template (infra and fp32) (#124021)\""}},{"before":null,"after":"fcfd5663ad6436e2336b7cd806212353110f16aa","ref":"refs/heads/gh/fffrog/11/head","pushedAt":"2024-05-23T08:35:36.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"FFFrog","name":"Jiawei Li","path":"/FFFrog","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/85333600?s=80&v=4"},"commit":{"message":"Make TraceUtils.h to be device-agnostic\n\n[ghstack-poisoned]","shortMessageHtmlLink":"Make TraceUtils.h to be device-agnostic"}},{"before":"56ee3a9e023499c1aa19e5a77af31af26bea8c2c","after":null,"ref":"refs/tags/ciflow/inductor/126785","pushedAt":"2024-05-23T08:34:34.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"56ee3a9e023499c1aa19e5a77af31af26bea8c2c","after":null,"ref":"refs/tags/ciflow/trunk/126785","pushedAt":"2024-05-23T08:34:33.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"a6155d23d193ee4971f47f1fded04f8b3eb1f065","after":"da7bf1d588ae4d5cb9a9e0e0014aff85791b5cc3","ref":"refs/heads/main","pushedAt":"2024-05-23T08:34:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"pytorchmergebot","name":null,"path":"/pytorchmergebot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/97764156?s=80&v=4"},"commit":{"message":"[export] Fix unflatten with empty nn_module_stack (#126785)\n\nFixes https://fb.workplace.com/groups/1075192433118967/permalink/1433418843962989/\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126785\nApproved by: https://github.com/tugsbayasgalan","shortMessageHtmlLink":"[export] Fix unflatten with empty nn_module_stack (#126785)"}},{"before":null,"after":"c2115cc1949a012274222eab7d2d814312be38d7","ref":"refs/heads/gh/leslie-fang-intel/104/orig","pushedAt":"2024-05-23T08:32:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"leslie-fang-intel","name":null,"path":"/leslie-fang-intel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/53841472?s=80&v=4"},"commit":{"message":"[Inductor][CPP] Enable Local Buffer for Outer loop fusion\n\nghstack-source-id: 42cf5eb59dab390d6e25258e0ebae194e2f9e1b6\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126967","shortMessageHtmlLink":"[Inductor][CPP] Enable Local Buffer for Outer loop fusion"}},{"before":null,"after":"558c4413ce10080566a20763547db4cef41ea923","ref":"refs/heads/gh/leslie-fang-intel/104/base","pushedAt":"2024-05-23T08:32:06.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"leslie-fang-intel","name":null,"path":"/leslie-fang-intel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/53841472?s=80&v=4"},"commit":{"message":"add strobelight cli function profiler (#126693)\n\nThis is a meta only tool, this allow users to profile any python function by annotating it with **strobelight** using\nthe strobelight profiler.\nex\n```\n def fn(x, y, z):\n return x * y + z\n\n # use decorator with default profiler.\n @strobelight()\n @torch.compile()\n def work():\n for i in range(100):\n for j in range(5):\n fn(torch.rand(j, j), torch.rand(j, j), torch.rand(j, j))\n\n work()\n```\n\ntest\n```\n python torch/utils/strobelight/examples/cli_function_profiler_example.py\nstrobelight_cli_function_profiler, line 274, 2024-05-20 11:05:41,513, INFO: strobelight run id is: -6222660165281106\nstrobelight_cli_function_profiler, line 276, 2024-05-20 11:06:08,318, INFO: strobelight profiling running\nstrobelight_cli_function_profiler, line 257, 2024-05-20 11:06:11,867, INFO: strobelight profiling stopped\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:16,164, INFO: Total samples: 2470\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:16,164, INFO: GraphProfiler (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/oiqmyltg\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:16,164, INFO: Icicle view (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/b10x92x0\nstrobelight_cli_function_profiler, line 274, 2024-05-20 11:06:18,476, INFO: strobelight run id is: -4112659701221677\nstrobelight_cli_function_profiler, line 276, 2024-05-20 11:06:45,096, INFO: strobelight profiling running\nstrobelight_cli_function_profiler, line 257, 2024-05-20 11:06:52,366, INFO: strobelight profiling stopped\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:56,222, INFO: Total samples: 1260\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:56,222, INFO: GraphProfiler (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/0yyx6el5\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:56,223, INFO: Icicle view (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/8m2by4ea\n(base) [lsakka@devvm4561.ash0 /data/users/lsakka/pytorch/pytorch (strobelight2)]$ python torch/profiler/strobelight_cli_function_profiler_example.py\nstrobelight_cli_function_profiler, line 274, 2024-05-20 11:07:26,701, INFO: strobelight run id is: -2373009368202256\nstrobelight_cli_function_profiler, line 276, 2024-05-20 11:07:53,477, INFO: strobelight profiling running\nstrobelight_cli_function_profiler, line 257, 2024-05-20 11:07:56,827, INFO: strobelight profiling stopped\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:01,138, INFO: Total samples: 2372\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:01,138, INFO: GraphProfiler (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/dk797xg9\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:01,138, INFO: Icicle view (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/4w6c8vnm\nstrobelight_cli_function_profiler, line 274, 2024-05-20 11:08:03,235, INFO: strobelight run id is: -1919086123693716\nstrobelight_cli_function_profiler, line 276, 2024-05-20 11:08:29,848, INFO: strobelight profiling running\nstrobelight_cli_function_profiler, line 257, 2024-05-20 11:08:37,233, INFO: strobelight profiling stopped\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:41,138, INFO: Total samples: 1272\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:41,138, INFO: GraphProfiler (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/43r58aew\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:41,138, INFO: Icicle view (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/9g52onmw\n(base) [lsakka@devvm4561.ash0 /data/users/lsakka/pytorch/pytorch (strobelight2)]$\n```\n\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126693\nApproved by: https://github.com/aorenste","shortMessageHtmlLink":"add strobelight cli function profiler (#126693)"}},{"before":null,"after":"e3b914046c988e8284f095d985f5a0df71a7eda2","ref":"refs/heads/gh/leslie-fang-intel/104/head","pushedAt":"2024-05-23T08:32:06.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"leslie-fang-intel","name":null,"path":"/leslie-fang-intel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/53841472?s=80&v=4"},"commit":{"message":"[Inductor][CPP] Enable Local Buffer for Outer loop fusion\n\n[ghstack-poisoned]","shortMessageHtmlLink":"[Inductor][CPP] Enable Local Buffer for Outer loop fusion"}},{"before":"89f6cb1c3be0f03d2e78dd5fc796d58c1bcc8bec","after":null,"ref":"refs/tags/ciflow/inductor/126083","pushedAt":"2024-05-23T08:29:40.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"28bb64b6514d551bcd14da787a96073fc59b2ed7","after":null,"ref":"refs/tags/ciflow/inductor/126903","pushedAt":"2024-05-23T08:29:39.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"28bb64b6514d551bcd14da787a96073fc59b2ed7","after":null,"ref":"refs/tags/ciflow/trunk/126903","pushedAt":"2024-05-23T08:29:38.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"89f6cb1c3be0f03d2e78dd5fc796d58c1bcc8bec","after":null,"ref":"refs/tags/ciflow/trunk/126083","pushedAt":"2024-05-23T08:29:37.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"558c4413ce10080566a20763547db4cef41ea923","after":"a6155d23d193ee4971f47f1fded04f8b3eb1f065","ref":"refs/heads/main","pushedAt":"2024-05-23T08:29:31.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"pytorchmergebot","name":null,"path":"/pytorchmergebot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/97764156?s=80&v=4"},"commit":{"message":"[easy] Delete dead code global (#126903)\n\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126903\nApproved by: https://github.com/aorenste\nghstack dependencies: #126083","shortMessageHtmlLink":"[easy] Delete dead code global (#126903)"}},{"before":"4f14282e350a6c9a0a280083c286f7d672fa3ebd","after":"2c90b992677a7ee700c8f3dd92b49e763474b004","ref":"refs/heads/viable/strict","pushedAt":"2024-05-23T08:24:49.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"pytorchmergebot","name":null,"path":"/pytorchmergebot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/97764156?s=80&v=4"},"commit":{"message":"Revert \"reset dynamo cache before each test (#126586)\"\n\nThis reverts commit 43f2f43eb3b6d8cbe8eb7f45acb50376092f1a16.\n\nReverted https://github.com/pytorch/pytorch/pull/126586 on behalf of https://github.com/clee2000 due to broke tests on inductor? test_modules.py::TestModuleCUDA::test_cpu_gpu_parity_nn_CTCLoss_cuda_float64 https://hud.pytorch.org/pytorch/pytorch/commit/43f2f43eb3b6d8cbe8eb7f45acb50376092f1a16 https://github.com/pytorch/pytorch/actions/runs/9200644034/job/25308511495 ([comment](https://github.com/pytorch/pytorch/pull/126586#issuecomment-2126228689))","shortMessageHtmlLink":"Revert \"reset dynamo cache before each test (#126586)\""}},{"before":"d5da98b895963c53f7f70b2d06e61a838f77a993","after":null,"ref":"refs/tags/ciflow/inductor/120059","pushedAt":"2024-05-23T08:22:49.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"21d93636e8d7bf98f03343ff6c95da091560e015","after":null,"ref":"refs/tags/ciflow/binaries/126174","pushedAt":"2024-05-23T08:08:11.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"71851f95421f7bd5394f44860434dd00906b3ccf","after":"91d06bf5b3f466b46041faca6eda013749e72efc","ref":"refs/heads/gh/jiayisunx/10/orig","pushedAt":"2024-05-23T08:02:01.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"jiayisunx","name":null,"path":"/jiayisunx","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/50946601?s=80&v=4"},"commit":{"message":"[Inductor] support masked vectorization for the tail_loop\n\nghstack-source-id: 22b4be82d0c0242fcf33c025f18e1de5842b2841\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126526","shortMessageHtmlLink":"[Inductor] support masked vectorization for the tail_loop"}},{"before":"f640c54c0c2df6230360e334db01801fc7009481","after":null,"ref":"refs/tags/ciflow/inductor/126526","pushedAt":"2024-05-23T08:02:00.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"f640c54c0c2df6230360e334db01801fc7009481","after":"39eec60d7a7f126328ce2024670033218a87593f","ref":"refs/heads/gh/jiayisunx/10/head","pushedAt":"2024-05-23T08:01:53.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"jiayisunx","name":null,"path":"/jiayisunx","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/50946601?s=80&v=4"},"commit":{"message":"Update\n\n[ghstack-poisoned]","shortMessageHtmlLink":"Update"}},{"before":"5b83f75e57aca976fb9d7acf3edb98e262a31172","after":null,"ref":"refs/tags/ciflow/binaries/126174","pushedAt":"2024-05-23T07:57:31.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"1bf57497bcadb6e8747e0ef2e023f01603bc0ef3","after":null,"ref":"refs/tags/ciflow/xpu/126725","pushedAt":"2024-05-23T07:57:18.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"1bf57497bcadb6e8747e0ef2e023f01603bc0ef3","after":null,"ref":"refs/tags/ciflow/linux-aarch64/126725","pushedAt":"2024-05-23T07:57:17.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"7a5e9502bb6ee43a1c23747fa5361a19f0babaa9","after":null,"ref":"refs/tags/ciflow/linux-aarch64/126725","pushedAt":"2024-05-23T07:56:52.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"7a5e9502bb6ee43a1c23747fa5361a19f0babaa9","after":null,"ref":"refs/tags/ciflow/xpu/126725","pushedAt":"2024-05-23T07:56:50.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":null,"after":"73a517d38b82deb34eb2d95fa448f4dccc01bbf8","ref":"refs/heads/gh/pearu/135/orig","pushedAt":"2024-05-23T07:51:18.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pearu","name":"Pearu Peterson","path":"/pearu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/402156?s=80&v=4"},"commit":{"message":"Unignore torch.profiler.profile\n\nghstack-source-id: a3db16f07b1d5d87ce3c01868ae8ba8cefcd18b3\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126965","shortMessageHtmlLink":"Unignore torch.profiler.profile"}},{"before":null,"after":"558c4413ce10080566a20763547db4cef41ea923","ref":"refs/heads/gh/pearu/135/base","pushedAt":"2024-05-23T07:51:12.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pearu","name":"Pearu Peterson","path":"/pearu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/402156?s=80&v=4"},"commit":{"message":"add strobelight cli function profiler (#126693)\n\nThis is a meta only tool, this allow users to profile any python function by annotating it with **strobelight** using\nthe strobelight profiler.\nex\n```\n def fn(x, y, z):\n return x * y + z\n\n # use decorator with default profiler.\n @strobelight()\n @torch.compile()\n def work():\n for i in range(100):\n for j in range(5):\n fn(torch.rand(j, j), torch.rand(j, j), torch.rand(j, j))\n\n work()\n```\n\ntest\n```\n python torch/utils/strobelight/examples/cli_function_profiler_example.py\nstrobelight_cli_function_profiler, line 274, 2024-05-20 11:05:41,513, INFO: strobelight run id is: -6222660165281106\nstrobelight_cli_function_profiler, line 276, 2024-05-20 11:06:08,318, INFO: strobelight profiling running\nstrobelight_cli_function_profiler, line 257, 2024-05-20 11:06:11,867, INFO: strobelight profiling stopped\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:16,164, INFO: Total samples: 2470\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:16,164, INFO: GraphProfiler (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/oiqmyltg\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:16,164, INFO: Icicle view (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/b10x92x0\nstrobelight_cli_function_profiler, line 274, 2024-05-20 11:06:18,476, INFO: strobelight run id is: -4112659701221677\nstrobelight_cli_function_profiler, line 276, 2024-05-20 11:06:45,096, INFO: strobelight profiling running\nstrobelight_cli_function_profiler, line 257, 2024-05-20 11:06:52,366, INFO: strobelight profiling stopped\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:56,222, INFO: Total samples: 1260\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:56,222, INFO: GraphProfiler (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/0yyx6el5\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:06:56,223, INFO: Icicle view (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/8m2by4ea\n(base) [lsakka@devvm4561.ash0 /data/users/lsakka/pytorch/pytorch (strobelight2)]$ python torch/profiler/strobelight_cli_function_profiler_example.py\nstrobelight_cli_function_profiler, line 274, 2024-05-20 11:07:26,701, INFO: strobelight run id is: -2373009368202256\nstrobelight_cli_function_profiler, line 276, 2024-05-20 11:07:53,477, INFO: strobelight profiling running\nstrobelight_cli_function_profiler, line 257, 2024-05-20 11:07:56,827, INFO: strobelight profiling stopped\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:01,138, INFO: Total samples: 2372\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:01,138, INFO: GraphProfiler (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/dk797xg9\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:01,138, INFO: Icicle view (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/4w6c8vnm\nstrobelight_cli_function_profiler, line 274, 2024-05-20 11:08:03,235, INFO: strobelight run id is: -1919086123693716\nstrobelight_cli_function_profiler, line 276, 2024-05-20 11:08:29,848, INFO: strobelight profiling running\nstrobelight_cli_function_profiler, line 257, 2024-05-20 11:08:37,233, INFO: strobelight profiling stopped\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:41,138, INFO: Total samples: 1272\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:41,138, INFO: GraphProfiler (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/43r58aew\nstrobelight_cli_function_profiler, line 237, 2024-05-20 11:08:41,138, INFO: Icicle view (python stack): https://fburl.com/scuba/pyperf_experimental/on_demand/9g52onmw\n(base) [lsakka@devvm4561.ash0 /data/users/lsakka/pytorch/pytorch (strobelight2)]$\n```\n\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126693\nApproved by: https://github.com/aorenste","shortMessageHtmlLink":"add strobelight cli function profiler (#126693)"}},{"before":null,"after":"c714b1229de6fd8f40f284b74098edf7ec7998bb","ref":"refs/heads/gh/pearu/135/head","pushedAt":"2024-05-23T07:51:12.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pearu","name":"Pearu Peterson","path":"/pearu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/402156?s=80&v=4"},"commit":{"message":"Unignore torch.profiler.profile\n\n[ghstack-poisoned]","shortMessageHtmlLink":"Unignore torch.profiler.profile"}},{"before":"2c2e79dc69f7be0f90e5513d7ec7fec670d090b4","after":null,"ref":"refs/tags/ciflow/inductor/126883","pushedAt":"2024-05-23T07:50:01.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pytorch-bot[bot]","name":null,"path":"/apps/pytorch-bot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/40112?s=80&v=4"}},{"before":"4c1ea45a598313e9f258df42548439180a196c6b","after":"bf5ea26ea7f6dcf76b2427077ec3e405afb1f265","ref":"refs/heads/gh/EikanWang/62/orig","pushedAt":"2024-05-23T07:49:59.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"EikanWang","name":"Eikan Wang","path":"/EikanWang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/55483091?s=80&v=4"},"commit":{"message":"Enalabe dynamic shape support for aoti_eager\n\nghstack-source-id: 6530e874861fc8e9d40eaefdbde8c2e277e22298\nPull Request resolved: https://github.com/pytorch/pytorch/pull/126883","shortMessageHtmlLink":"Enalabe dynamic shape support for aoti_eager"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEUcT6kQA","startCursor":null,"endCursor":null}},"title":"Activity ยท pytorch/pytorch"}