From 14743a6deb9e25bebf5f2ce59d738a9d0a7f92c8 Mon Sep 17 00:00:00 2001 From: Shunyao Li Date: Mon, 21 Jul 2025 15:46:41 -0700 Subject: [PATCH] Remove expensive memory_full_info kernel call --- dashboard/modules/reporter/reporter_agent.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/modules/reporter/reporter_agent.py b/dashboard/modules/reporter/reporter_agent.py index 47e0787cb062..a3c1d8fa6b17 100644 --- a/dashboard/modules/reporter/reporter_agent.py +++ b/dashboard/modules/reporter/reporter_agent.py @@ -610,7 +610,7 @@ def _get_workers(self): "cpu_times", "cmdline", "memory_info", - "memory_full_info", + # "memory_full_info", # remove it as an action item for pytorch 2.6 perf debug "num_fds", ] ) @@ -648,7 +648,7 @@ def _get_raylet(self): "cpu_times", "cmdline", "memory_info", - "memory_full_info", + # "memory_full_info", # remove it as an action item for pytorch 2.6 perf debug "num_fds", ] ) @@ -665,7 +665,7 @@ def _get_agent(self): "cpu_times", "cmdline", "memory_info", - "memory_full_info", + # "memory_full_info", # remove it as an action item for pytorch 2.6 perf debug "num_fds", ] )