Skip to content

Commit 1e5fad0

Browse files
committed
futher simplification
1 parent 7603b7d commit 1e5fad0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

designs/arm_core/gen_fanout_list_with_py_netlist.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def edit():
2121
# Collect and dump all driver fanouts
2222
fanout_file = open('fanoutNaja.list','w')
2323

24-
for entry in primitives:
24+
for inst in primitives:
2525
# Iterate over instance's terms
26-
for term in entry.getOutputInstTerms():
26+
for term in inst.getOutputInstTerms():
2727
fanout_file.write(term.getString() + " " + str(term.getFlatFanout()))
2828
fanout_file.write("\n")
2929

0 commit comments

Comments
 (0)