From 4c78af9c1b9f403cd606efa3684e2c154a6f1f38 Mon Sep 17 00:00:00 2001 From: lixiaoyong1 Date: Fri, 23 Aug 2024 18:16:32 +0800 Subject: [PATCH] Add mem info for menu in kyreport --- kyreport/ky_report.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyreport/ky_report.py b/kyreport/ky_report.py index b65cd94..1769adb 100644 --- a/kyreport/ky_report.py +++ b/kyreport/ky_report.py @@ -71,3 +71,5 @@ class KyReport: info['cpu_info'] = DATACOLLECTION().get_cpu_tag_data() if os.path.exists(Config.get_output_path() + 'CPUInfo.txt'): info['synthesis_info'] = DATACOLLECTION().get_synthesis_tag_data() + if os.path.exists(Config.get_output_path() + 'memInfo.txt'): + info['mem_info'] = self.build_info(Config.get_output_path() + 'memInfo.txt') -- Gitee