From 14283f4843c29cd3ab5133af2830081747bc5ee3 Mon Sep 17 00:00:00 2001 From: stby <295887736@qq.com> Date: Wed, 14 Aug 2024 14:58:45 +0800 Subject: [PATCH] bugfix: adapt overall_perf_interface --- .../compare_backend/disaggregate/overall_perf_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/compare_tools/compare_backend/disaggregate/overall_perf_interface.py b/profiler/compare_tools/compare_backend/disaggregate/overall_perf_interface.py index 65524664ee0..8e7649368ff 100644 --- a/profiler/compare_tools/compare_backend/disaggregate/overall_perf_interface.py +++ b/profiler/compare_tools/compare_backend/disaggregate/overall_perf_interface.py @@ -31,7 +31,7 @@ class OverallPerfInterface: def _check_path(self): profiling_path = PathManager.get_realpath(self._profiling_path) - self._profiling_path_dict = ArgsManager().parse_profiling_path(profiling_path) + self._profiling_path_dict = ArgsManager(None).parse_profiling_path(profiling_path) def _load_data(self): args = Args(enable_profiling_compare=True) -- Gitee