mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
aig model: Call memory_map late to avoid performance issues
This requires running simplemap on the output as memory_map produces coarse-grained cells even though we already have a fine-grained design.
This commit is contained in:
parent
3412ea859b
commit
0aebf0b4d0
|
@ -726,8 +726,6 @@ class SbyTask(SbyConfig):
|
||||||
print(f"# running in {self.workdir}/model/", file=f)
|
print(f"# running in {self.workdir}/model/", file=f)
|
||||||
print("read_ilang design_prep.il", file=f)
|
print("read_ilang design_prep.il", file=f)
|
||||||
print("hierarchy -simcheck", file=f)
|
print("hierarchy -simcheck", file=f)
|
||||||
print("memory_map -formal", file=f)
|
|
||||||
print("formalff -setundef -clk2ff -ff2anyinit", file=f)
|
|
||||||
print("flatten", file=f)
|
print("flatten", file=f)
|
||||||
print("setundef -undriven -anyseq", file=f)
|
print("setundef -undriven -anyseq", file=f)
|
||||||
print("setattr -unset keep", file=f)
|
print("setattr -unset keep", file=f)
|
||||||
|
@ -735,6 +733,9 @@ class SbyTask(SbyConfig):
|
||||||
print("opt -full", file=f)
|
print("opt -full", file=f)
|
||||||
print("techmap", file=f)
|
print("techmap", file=f)
|
||||||
print("opt -fast", file=f)
|
print("opt -fast", file=f)
|
||||||
|
print("memory_map -formal", file=f)
|
||||||
|
print("formalff -clk2ff -ff2anyinit", file=f)
|
||||||
|
print("simplemap", file=f)
|
||||||
print("dffunmap", file=f)
|
print("dffunmap", file=f)
|
||||||
print("abc -g AND -fast", file=f)
|
print("abc -g AND -fast", file=f)
|
||||||
print("opt_clean", file=f)
|
print("opt_clean", file=f)
|
||||||
|
|
Loading…
Reference in a new issue