From aa56d995ead2020deaf8d6dac8ba7c7806668317 Mon Sep 17 00:00:00 2001 From: lixiaoyong1 Date: Fri, 30 Aug 2024 18:04:12 +0800 Subject: [PATCH] Add synthesis info for report --- kyreport/ky_report.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyreport/ky_report.py b/kyreport/ky_report.py index 76310a4..5d98943 100644 --- a/kyreport/ky_report.py +++ b/kyreport/ky_report.py @@ -77,4 +77,6 @@ class KyReport: info['net_info'] = self.build_info(Config.get_output_path() + 'netInfo.txt') if os.path.exists(Config.get_output_path() + 'diskInfo.txt'): info['io_info'] = self.build_info(Config.get_output_path() + 'diskInfo.txt') + if os.path.exists(Config.get_output_path() + 'CPUInfo.txt'): + info['synthesis_info'] = DATACOLLECTION().get_synthesis_tag_data() -- Gitee