2022-02-28 17:14:56 +00:00
|
|
|
import glob
|
|
|
|
import re
|
|
|
|
import csv
|
|
|
|
|
|
|
|
field_names = [ 'Name', 'Critical Path Length', 'Cell Area']
|
|
|
|
data = []
|
|
|
|
for name in glob.glob("/home/ssanghai/riscv-wally/synthDC/runs/*/reports/wallypipelinedcore_qor.rep"):
|
|
|
|
f = open(name, 'r')
|
2022-02-28 17:33:15 +00:00
|
|
|
# trimName = re.search("runs\/(.*?)\/reports", name).group(1)
|
|
|
|
trimName = re.search("wallypipelinedcore_(.*?)_sky9",name).group(1)
|
2022-02-28 17:14:56 +00:00
|
|
|
for line in f:
|
|
|
|
if "Critical Path Length" in line:
|
|
|
|
pathLen = re.search("Length: *(.*?)\\n", line).group(1)
|
|
|
|
if "Cell Area" in line:
|
|
|
|
area = re.search("Area: *(.*?)\\n", line).group(1)
|
|
|
|
data += [{'Name' : trimName, 'Critical Path Length': pathLen, 'Cell Area' : area}]
|
|
|
|
|
|
|
|
with open('Summary.csv', 'w') as csvfile:
|
|
|
|
writer = csv.DictWriter(csvfile, fieldnames=field_names)
|
|
|
|
writer.writeheader()
|
|
|
|
writer.writerows(data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|