From ed0c93ba550252f10e92ab7fb1f751961448173d Mon Sep 17 00:00:00 2001 From: Bugra Onal Date: Mon, 10 Jul 2023 14:05:44 -0700 Subject: [PATCH] Only add drc errors from compiler --- compiler/characterizer/lib.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/characterizer/lib.py b/compiler/characterizer/lib.py index 296aeaa9..68cc08b1 100644 --- a/compiler/characterizer/lib.py +++ b/compiler/characterizer/lib.py @@ -802,7 +802,8 @@ class lib: # information of checks # run it only the first time - datasheet.write("{0},{1},".format(self.sram.drc_errors, self.sram.lvs_errors)) + if OPTS.top_process != "memchar": + datasheet.write("{0},{1},".format(self.sram.drc_errors, self.sram.lvs_errors)) # write area datasheet.write(str(self.sram.width * self.sram.height) + ',')