3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 14:04:07 +00:00

New "none" engine to be used with the "make_model" option

This commit is contained in:
Jannis Harder 2022-08-05 15:51:11 +02:00
parent 231f0b80aa
commit 3412ea859b
6 changed files with 26 additions and 4 deletions

View file

@ -346,6 +346,15 @@ solvers:
Solver options are passed as additional arguments to the ABC command
implementing the solver.
``none`` engine
~~~~~~~~~~~~~~~
The ``none`` engine does not run any solver. It can be used together with the
``make_model`` option to manually generate any model supported by one of the
other engines. This makes it easier to use the same models outside of sby.
Script section
--------------

View file

@ -597,7 +597,8 @@ class SbyTask(SbyConfig):
else:
print("async2sync", file=f)
print("chformal -assume -early", file=f)
print("formalff -clk2ff -ff2anyinit", file=f)
print("opt_clean", file=f)
print("formalff -setundef -clk2ff -ff2anyinit", file=f)
if self.opt_mode in ["bmc", "prove"]:
print("chformal -live -fair -cover -remove", file=f)
if self.opt_mode == "cover":
@ -661,7 +662,7 @@ class SbyTask(SbyConfig):
print("hierarchy -smtcheck", file=f)
if "_nomem" in model_name:
print("memory_map -formal", file=f)
print("formalff -clk2ff -ff2anyinit", file=f)
print("formalff -setundef -clk2ff -ff2anyinit", file=f)
if "_syn" in model_name:
print("techmap", file=f)
print("opt -fast", file=f)
@ -693,7 +694,7 @@ class SbyTask(SbyConfig):
print("hierarchy -simcheck", file=f)
if "_nomem" in model_name:
print("memory_map -formal", file=f)
print("formalff -clk2ff -ff2anyinit", file=f)
print("formalff -setundef -clk2ff -ff2anyinit", file=f)
print("flatten", file=f)
print("setundef -undriven -anyseq", file=f)
if "_syn" in model_name:
@ -726,7 +727,7 @@ class SbyTask(SbyConfig):
print("read_ilang design_prep.il", file=f)
print("hierarchy -simcheck", file=f)
print("memory_map -formal", file=f)
print("formalff -clk2ff -ff2anyinit", file=f)
print("formalff -setundef -clk2ff -ff2anyinit", file=f)
print("flatten", file=f)
print("setundef -undriven -anyseq", file=f)
print("setattr -unset keep", file=f)

View file

@ -46,5 +46,8 @@ def run(task):
import sby_engine_btor
sby_engine_btor.run("bmc", task, engine_idx, engine)
elif engine[0] == "none":
pass
else:
task.error(f"Invalid engine '{engine[0]}' for bmc mode.")

View file

@ -37,5 +37,8 @@ def run(task):
import sby_engine_btor
sby_engine_btor.run("cover", task, engine_idx, engine)
elif engine[0] == "none":
pass
else:
task.error(f"Invalid engine '{engine[0]}' for cover mode.")

View file

@ -34,5 +34,8 @@ def run(task):
import sby_engine_aiger
sby_engine_aiger.run("live", task, engine_idx, engine)
elif engine[0] == "none":
pass
else:
task.error(f"Invalid engine '{engine[0]}' for live mode.")

View file

@ -49,5 +49,8 @@ def run(task):
import sby_engine_abc
sby_engine_abc.run("prove", task, engine_idx, engine)
elif engine[0] == "none":
pass
else:
task.error(f"Invalid engine '{engine[0]}' for prove mode.")