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) + ',')