Fix load_kernel_top arg for GUI analyze mode (#740)

--gui option for analyze mode failing due to missing arg in load_kernel_top call in pre_processing

Signed-off-by: Carrie Fallows <Carrie.Fallows@amd.com>

[ROCm/rocprofiler-compute commit: ce3ef1400e]
This commit is contained in:
cfallows-amd
2025-06-10 11:27:03 -04:00
committed by GitHub
orang tua c7cea9c971
melakukan 5de2375db1
@@ -315,7 +315,9 @@ class webui_analysis(OmniAnalyze_Base):
kernel_verbose=self.get_args().kernel_verbose,
)
# create the loaded kernel stats
parser.load_kernel_top(self._runs[self.dest_dir], self.dest_dir)
parser.load_kernel_top(
self._runs[self.dest_dir], self.dest_dir, self.get_args()
)
# set architecture
self.arch = self._runs[self.dest_dir].sys_info.iloc[0]["gpu_arch"]