From 821a7518a2b81ba2a0dfcab1099447f3d167bfe2 Mon Sep 17 00:00:00 2001 From: z30043230 Date: Mon, 7 Jul 2025 09:23:50 +0800 Subject: [PATCH] =?UTF-8?q?bugfix:group=5Fname=E6=9C=89=E5=8F=AF=E8=83=BD?= =?UTF-8?q?=E4=B8=BA=E7=A9=BA=E5=AD=97=E7=AC=A6=E4=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../recipes/communication_group_map/communication_group_map.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/profiler/msprof_analyze/cluster_analyse/recipes/communication_group_map/communication_group_map.py b/profiler/msprof_analyze/cluster_analyse/recipes/communication_group_map/communication_group_map.py index 49b7d560e..7990aefd4 100644 --- a/profiler/msprof_analyze/cluster_analyse/recipes/communication_group_map/communication_group_map.py +++ b/profiler/msprof_analyze/cluster_analyse/recipes/communication_group_map/communication_group_map.py @@ -119,8 +119,6 @@ class CommunicationGroupMap(BaseRecipeAnalysis): group_name = str(double_hash(group_id)) # group_name is hashed group_id pg_name = parallel_info.get(TableConstant.GROUP_NAME, "") global_ranks = parallel_info.get(self.GLOBAL_RANKS, []) - if not pg_name or not global_ranks: - continue parallel_info_df.loc[parallel_info_df.shape[0]] = [group_name, group_id, pg_name, "(" + ",".join(str(i) for i in global_ranks) + ")"] -- Gitee