mirror of https://github.com/VLSIDA/OpenRAM.git
Merge branch 'datasheet_gen' into dev
This commit is contained in:
commit
8c9c910855
|
|
@ -61,8 +61,8 @@ class datasheet():
|
|||
# check if analytical model is being used
|
||||
self.html += '<p style="font-size: 26px;font-family: Trebuchet MS, Arial, Helvetica, sans-serif;">Timing Data</p>'
|
||||
model = ''
|
||||
if self.ANALYTICAL_MODEL:
|
||||
model = "analytical model: results may not be percise"
|
||||
if self.ANALYTICAL_MODEL == 'True':
|
||||
model = "analytical model: results may not be precise"
|
||||
else:
|
||||
model = "spice characterizer"
|
||||
# display timing data
|
||||
|
|
|
|||
|
|
@ -105,16 +105,16 @@ def parse_characterizer_csv(f, pages):
|
|||
|
||||
DATETIME = row[col]
|
||||
col += 1
|
||||
|
||||
ANALYTICAL_MODEL = row[col]
|
||||
col += 1
|
||||
|
||||
DRC = row[col]
|
||||
col += 1
|
||||
|
||||
LVS = row[col]
|
||||
col += 1
|
||||
|
||||
ANALYTICAL_MODEL = row[col]
|
||||
col += 1
|
||||
|
||||
|
||||
AREA = row[col]
|
||||
col += 1
|
||||
|
||||
|
|
@ -615,7 +615,7 @@ def parse_characterizer_csv(f, pages):
|
|||
new_sheet.io_table.add_row(['NUM_R_PORTS', NUM_R_PORTS])
|
||||
new_sheet.io_table.add_row(['NUM_W_PORTS', NUM_W_PORTS])
|
||||
new_sheet.io_table.add_row(
|
||||
['Area (µm<sup>2</sup>)', AREA])
|
||||
['Area (µm<sup>2</sup>)', str(round(float(AREA)))])
|
||||
|
||||
|
||||
class datasheet_gen():
|
||||
|
|
|
|||
Loading…
Reference in New Issue