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

Merge pull request #248 from jix/ivy_wip

assume_early option to implement cross assumes in IVY
This commit is contained in:
Miodrag Milanović 2023-08-25 15:56:54 +02:00 committed by GitHub
commit 85dd50b92a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -989,7 +989,8 @@ class SbyTask(SbyConfig):
print("clk2fflogic", file=f)
else:
print("async2sync", file=f)
print("chformal -assume -early", file=f)
if self.opt_assume_early:
print("chformal -assume -early", file=f)
print("opt_clean", file=f)
print("formalff -setundef -clk2ff -ff2anyinit -hierarchy", file=f)
if self.opt_mode in ["bmc", "prove"]:
@ -1252,6 +1253,8 @@ class SbyTask(SbyConfig):
self.handle_str_option("make_model", None)
self.handle_bool_option("skip_prep", False)
self.handle_bool_option("assume_early", True)
def setup_procs(self, setupmode):
self.handle_non_engine_options()
if self.opt_smtc is not None: