From edb068bff4b8f67b3c130c63d9f51b88b3761aec Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Tue, 2 Aug 2022 17:11:38 +0200 Subject: [PATCH 1/8] Fix print_junit_results failure during some error conditions There is a small window between setting self.precise_prop_status and initializing self.design. I've only managed to produce an error within that windows during development, but getting unrelated stacktraces from print_junit_result failing distracts from debugging the issue at hand. --- sbysrc/sby_core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sbysrc/sby_core.py b/sbysrc/sby_core.py index 790d64d..ce69f9d 100644 --- a/sbysrc/sby_core.py +++ b/sbysrc/sby_core.py @@ -906,6 +906,8 @@ class SbyTask(SbyConfig): def print_junit_result(self, f, junit_ts_name, junit_tc_name, junit_format_strict=False): junit_time = strftime('%Y-%m-%dT%H:%M:%S') + if not self.design: + self.precise_prop_status = False if self.precise_prop_status: checks = self.design.hierarchy.get_property_list() junit_tests = len(checks) From 5265a52b65df0d196d48d30029bf3de1bbcff36a Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Mon, 25 Jul 2022 11:35:10 +0200 Subject: [PATCH 2/8] Refactor flow to use a common prep model The goal of this is to make sure that all backend flows are compatible and we can map between them, so that e.g. the aiger model can be used to minimize a counterexample trace produced by smtbmc. Reducing the parts that differ per backend (including parts that receive different input depending on the used backend) also makes testing more effective as the common parts are easier to cover. --- sbysrc/sby_autotune.py | 2 +- sbysrc/sby_core.py | 81 +++++++++++++++++++++++++----------------- tests/unsorted/mixed.v | 13 ++++--- 3 files changed, 55 insertions(+), 41 deletions(-) diff --git a/sbysrc/sby_autotune.py b/sbysrc/sby_autotune.py index 9e2f28c..c7d741c 100644 --- a/sbysrc/sby_autotune.py +++ b/sbysrc/sby_autotune.py @@ -391,7 +391,7 @@ class SbyAutotune: else: self.task.copy_src() - self.model(None, "base") + self.model(None, "prep") self.task.taskloop.run() if self.task.status == "ERROR": diff --git a/sbysrc/sby_core.py b/sbysrc/sby_core.py index ce69f9d..8ef528d 100644 --- a/sbysrc/sby_core.py +++ b/sbysrc/sby_core.py @@ -585,25 +585,44 @@ class SbyTask(SbyConfig): if not os.path.isdir(f"{self.workdir}/model"): os.makedirs(f"{self.workdir}/model") - def print_common_prep(check): - print("scc -select; simplemap; select -clear", file=f) - if self.opt_multiclock: - print("clk2fflogic", file=f) - else: - print("async2sync", file=f) - print("chformal -assume -early", file=f) - if self.opt_mode in ["bmc", "prove"]: - print("chformal -live -fair -cover -remove", file=f) - if self.opt_mode == "cover": - print("chformal -live -fair -remove", file=f) - if self.opt_mode == "live": - print("chformal -assert2assume", file=f) - print("chformal -cover -remove", file=f) - print("opt_clean", file=f) - print("setundef -anyseq", file=f) - print("opt -keepdc -fast", file=f) - print("check", file=f) - print(f"hierarchy {check}", file=f) + if model_name == "prep": + with open(f"""{self.workdir}/model/design_prep.ys""", "w") as f: + print(f"# running in {self.workdir}/model/", file=f) + print(f"""read_ilang design.il""", file=f) + print("scc -select; simplemap; select -clear", file=f) + print("memory_nordff", file=f) + if self.opt_multiclock: + print("clk2fflogic", file=f) + else: + print("async2sync", file=f) + print("chformal -assume -early", file=f) + print("formalff -clk2ff -ff2anyinit", file=f) + if self.opt_mode in ["bmc", "prove"]: + print("chformal -live -fair -cover -remove", file=f) + if self.opt_mode == "cover": + print("chformal -live -fair -remove", file=f) + if self.opt_mode == "live": + print("chformal -assert2assume", file=f) + print("chformal -cover -remove", file=f) + print("opt_clean", file=f) + print("check", file=f) # can't detect undriven wires past this point + print("setundef -undriven -anyseq", file=f) + print("opt -fast", file=f) + # running opt before the renames below results in fewer unnamed witness signals + for celltype in ["anyconst", "anyseq", "anyinit", "allconst", "allseq"]: + print(f"rename -enumerate -pattern _sby_witness_{celltype}_% t:${celltype} %co w:* %i", file=f) + print("opt_clean", file=f) + print(f"""write_rtlil ../model/design_prep.il""", file=f) + + proc = SbyProc( + self, + model_name, + self.model("base"), + "cd {}/model; {} -ql design_{s}.log design_{s}.ys".format(self.workdir, self.exe_paths["yosys"], s=model_name) + ) + proc.checkretcode = True + + return [proc] if model_name == "base": with open(f"""{self.workdir}/model/design.ys""", "w") as f: @@ -639,12 +658,10 @@ class SbyTask(SbyConfig): if re.match(r"^smt2(_syn)?(_nomem)?(_stbv|_stdt)?$", model_name): with open(f"{self.workdir}/model/design_{model_name}.ys", "w") as f: print(f"# running in {self.workdir}/model/", file=f) - print(f"""read_ilang design.il""", file=f) + print(f"""read_ilang design_prep.il""", file=f) + print("hierarchy -smtcheck", file=f) if "_nomem" in model_name: print("memory_map", file=f) - else: - print("memory_nordff", file=f) - print_common_prep("-smtcheck") if "_syn" in model_name: print("techmap", file=f) print("opt -fast", file=f) @@ -662,7 +679,7 @@ class SbyTask(SbyConfig): proc = SbyProc( self, model_name, - self.model("base"), + self.model("prep"), "cd {}/model; {} -ql design_{s}.log design_{s}.ys".format(self.workdir, self.exe_paths["yosys"], s=model_name) ) proc.checkretcode = True @@ -672,12 +689,10 @@ class SbyTask(SbyConfig): if re.match(r"^btor(_syn)?(_nomem)?$", model_name): with open(f"{self.workdir}/model/design_{model_name}.ys", "w") as f: print(f"# running in {self.workdir}/model/", file=f) - print(f"""read_ilang design.il""", file=f) + print(f"""read_ilang design_prep.il""", file=f) + print("hierarchy -simcheck", file=f) if "_nomem" in model_name: print("memory_map", file=f) - else: - print("memory_nordff", file=f) - print_common_prep("-simcheck") print("flatten", file=f) print("setundef -undriven -anyseq", file=f) if "_syn" in model_name: @@ -687,7 +702,7 @@ class SbyTask(SbyConfig): print("abc", file=f) print("opt_clean", file=f) else: - print("opt -fast -keepdc", file=f) + print("opt -fast", file=f) print("delete -output", file=f) print("dffunmap", file=f) print("stat", file=f) @@ -697,7 +712,7 @@ class SbyTask(SbyConfig): proc = SbyProc( self, model_name, - self.model("base"), + self.model("prep"), "cd {}/model; {} -ql design_{s}.log design_{s}.ys".format(self.workdir, self.exe_paths["yosys"], s=model_name) ) proc.checkretcode = True @@ -707,9 +722,9 @@ class SbyTask(SbyConfig): if model_name == "aig": with open(f"{self.workdir}/model/design_aiger.ys", "w") as f: print(f"# running in {self.workdir}/model/", file=f) - print("read_ilang design.il", file=f) + print("read_ilang design_prep.il", file=f) + print("hierarchy -simcheck", file=f) print("memory_map", file=f) - print_common_prep("-simcheck") print("flatten", file=f) print("setundef -undriven -anyseq", file=f) print("setattr -unset keep", file=f) @@ -726,7 +741,7 @@ class SbyTask(SbyConfig): proc = SbyProc( self, "aig", - self.model("base"), + self.model("prep"), f"""cd {self.workdir}/model; {self.exe_paths["yosys"]} -ql design_aiger.log design_aiger.ys""" ) proc.checkretcode = True diff --git a/tests/unsorted/mixed.v b/tests/unsorted/mixed.v index fa3cf2c..26bf3c9 100644 --- a/tests/unsorted/mixed.v +++ b/tests/unsorted/mixed.v @@ -1,17 +1,16 @@ -module test (input CP, CN, CX, input A, B, output reg XP, XN, YP, YN); +module test (input CP, CN, input A, B, output reg XP, XN); + reg [7:0] counter = 0; always @* begin assume (A || B); assume (!A || !B); assert (A != B); - cover (A); - cover (B); + cover (counter == 3 && A); + cover (counter == 3 && B); end + always @(posedge CP) + counter <= counter + 1; always @(posedge CP) XP <= A; always @(negedge CN) XN <= B; - always @(posedge CX) - YP <= A; - always @(negedge CX) - YN <= B; endmodule From acaf6ef0c2799e5ff506610bef23840c1f819853 Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Tue, 2 Aug 2022 16:34:25 +0200 Subject: [PATCH 3/8] Use new memory_map -formal for aiger/_nomem --- sbysrc/sby_core.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sbysrc/sby_core.py b/sbysrc/sby_core.py index 8ef528d..08fd89f 100644 --- a/sbysrc/sby_core.py +++ b/sbysrc/sby_core.py @@ -661,7 +661,8 @@ class SbyTask(SbyConfig): print(f"""read_ilang design_prep.il""", file=f) print("hierarchy -smtcheck", file=f) if "_nomem" in model_name: - print("memory_map", file=f) + print("memory_map -formal", file=f) + print("formalff -clk2ff -ff2anyinit", file=f) if "_syn" in model_name: print("techmap", file=f) print("opt -fast", file=f) @@ -692,7 +693,8 @@ class SbyTask(SbyConfig): print(f"""read_ilang design_prep.il""", file=f) print("hierarchy -simcheck", file=f) if "_nomem" in model_name: - print("memory_map", file=f) + print("memory_map -formal", file=f) + print("formalff -clk2ff -ff2anyinit", file=f) print("flatten", file=f) print("setundef -undriven -anyseq", file=f) if "_syn" in model_name: @@ -724,7 +726,8 @@ class SbyTask(SbyConfig): print(f"# running in {self.workdir}/model/", file=f) print("read_ilang design_prep.il", file=f) print("hierarchy -simcheck", file=f) - print("memory_map", file=f) + print("memory_map -formal", file=f) + print("formalff -clk2ff -ff2anyinit", file=f) print("flatten", file=f) print("setundef -undriven -anyseq", file=f) print("setattr -unset keep", file=f) From d3520037b9f7c95380c3f0ecffc640011c835532 Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Tue, 2 Aug 2022 18:19:01 +0200 Subject: [PATCH 4/8] Write native yosys witness traces --- sbysrc/sby_core.py | 2 +- sbysrc/sby_engine_aiger.py | 4 ++-- sbysrc/sby_engine_smtbmc.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sbysrc/sby_core.py b/sbysrc/sby_core.py index 08fd89f..3b7a5fe 100644 --- a/sbysrc/sby_core.py +++ b/sbysrc/sby_core.py @@ -739,7 +739,7 @@ class SbyTask(SbyConfig): print("abc -g AND -fast", file=f) print("opt_clean", file=f) print("stat", file=f) - print("write_aiger -I -B -zinit -no-startoffset -map design_aiger.aim design_aiger.aig", file=f) + print("write_aiger -I -B -zinit -no-startoffset -map design_aiger.aim -ywmap design_aiger.ywa design_aiger.aig", file=f) proc = SbyProc( self, diff --git a/sbysrc/sby_engine_aiger.py b/sbysrc/sby_engine_aiger.py index e392932..d59105a 100644 --- a/sbysrc/sby_engine_aiger.py +++ b/sbysrc/sby_engine_aiger.py @@ -111,7 +111,7 @@ def run(mode, task, engine_idx, engine): f"engine_{engine_idx}", task.model("smt2"), ("cd {}; {} -g -s {}{} --noprogress --dump-vcd engine_{i}/trace.vcd --dump-vlogtb engine_{i}/trace_tb.v " + - "--dump-smtc engine_{i}/trace.smtc --aig model/design_aiger.aim:engine_{i}/trace.aiw model/design_smt2.smt2").format + "--dump-smtc engine_{i}/trace.smtc --dump-yw engine_{i}/trace.yw --aig model/design_aiger.aim:engine_{i}/trace.aiw model/design_smt2.smt2").format (task.workdir, task.exe_paths["smtbmc"], task.opt_aigsmt, "" if task.opt_tbtop is None else f" --vlogtb-top {task.opt_tbtop}", i=engine_idx), @@ -123,7 +123,7 @@ def run(mode, task, engine_idx, engine): f"engine_{engine_idx}", task.model("smt2"), ("cd {}; {} -s {}{} --noprogress --append {} --dump-vcd engine_{i}/trace.vcd --dump-vlogtb engine_{i}/trace_tb.v " + - "--dump-smtc engine_{i}/trace.smtc --aig model/design_aiger.aim:engine_{i}/trace.aiw model/design_smt2.smt2").format + "--dump-smtc engine_{i}/trace.smtc --dump-yw engine_{i}/trace.yw --aig model/design_aiger.aim:engine_{i}/trace.aiw model/design_smt2.smt2").format (task.workdir, task.exe_paths["smtbmc"], task.opt_aigsmt, "" if task.opt_tbtop is None else f" --vlogtb-top {task.opt_tbtop}", task.opt_append, i=engine_idx), diff --git a/sbysrc/sby_engine_smtbmc.py b/sbysrc/sby_engine_smtbmc.py index 8c11388..9dd92c3 100644 --- a/sbysrc/sby_engine_smtbmc.py +++ b/sbysrc/sby_engine_smtbmc.py @@ -152,7 +152,7 @@ def run(mode, task, engine_idx, engine): task, procname, task.model(model_name), - f"""cd {task.workdir}; {task.exe_paths["smtbmc"]} {" ".join(smtbmc_opts)} -t {t_opt} {random_seed} --append {task.opt_append} --dump-vcd {trace_prefix}.vcd --dump-vlogtb {trace_prefix}_tb.v --dump-smtc {trace_prefix}.smtc model/design_{model_name}.smt2""", + f"""cd {task.workdir}; {task.exe_paths["smtbmc"]} {" ".join(smtbmc_opts)} -t {t_opt} {random_seed} --append {task.opt_append} --dump-vcd {trace_prefix}.vcd --dump-yw {trace_prefix}.yw --dump-vlogtb {trace_prefix}_tb.v --dump-smtc {trace_prefix}.smtc model/design_{model_name}.smt2""", logfile=open(logfile_prefix + ".txt", "w"), logstderr=(not progress) ) From 22585b33dc2c3a2067a601fe9d8d63a12e7144b5 Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Wed, 3 Aug 2022 17:33:04 +0200 Subject: [PATCH 5/8] Use 'rename -witness' instead of multiple 'rename -enumerate' --- sbysrc/sby_core.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sbysrc/sby_core.py b/sbysrc/sby_core.py index 3b7a5fe..d855abf 100644 --- a/sbysrc/sby_core.py +++ b/sbysrc/sby_core.py @@ -608,9 +608,7 @@ class SbyTask(SbyConfig): print("check", file=f) # can't detect undriven wires past this point print("setundef -undriven -anyseq", file=f) print("opt -fast", file=f) - # running opt before the renames below results in fewer unnamed witness signals - for celltype in ["anyconst", "anyseq", "anyinit", "allconst", "allseq"]: - print(f"rename -enumerate -pattern _sby_witness_{celltype}_% t:${celltype} %co w:* %i", file=f) + print("rename -witness", file=f) print("opt_clean", file=f) print(f"""write_rtlil ../model/design_prep.il""", file=f) From 231f0b80aa15bea98987ebc47527cac8f9eb2067 Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Tue, 2 Aug 2022 17:08:53 +0200 Subject: [PATCH 6/8] Add make_model option to generate models not required by the task Useful to do custom things (like counter example minimization) but still use sby's flow to prepare models. --- docs/source/reference.rst | 6 ++++++ sbysrc/sby_core.py | 14 ++++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/docs/source/reference.rst b/docs/source/reference.rst index 8d00314..447673a 100644 --- a/docs/source/reference.rst +++ b/docs/source/reference.rst @@ -153,6 +153,12 @@ options are: | ``tbtop`` | All | The top module for generated Verilog test benches, as | | | | hierarchical path relative to the design top module. | +------------------+------------+---------------------------------------------------------+ +| ``make_model`` | All | Force generation of the named formal models. Takes a | +| | | comma-separated list of model names. For a model | +| | | ```` this will generate the | +| | | ``model/design_.*`` files within the working | +| | | directory, even when not required to run the task. | ++------------------+------------+---------------------------------------------------------+ | ``smtc`` | ``bmc``, | Pass this ``.smtc`` file to the smtbmc engine. All | | | ``prove``, | other engines are disabled when this option is used. | | | ``cover`` | Default: None | diff --git a/sbysrc/sby_core.py b/sbysrc/sby_core.py index d855abf..2a1a994 100644 --- a/sbysrc/sby_core.py +++ b/sbysrc/sby_core.py @@ -81,6 +81,7 @@ class SbyProc: self.linebuffer = "" self.logstderr = logstderr self.silent = silent + self.wait = False self.task.update_proc_pending(self) @@ -130,7 +131,7 @@ class SbyProc: self.error_callback(retcode) def terminate(self, timeout=False): - if self.task.opt_wait and not timeout: + if (self.task.opt_wait or self.wait) and not timeout: return if self.running: if not self.silent: @@ -749,7 +750,7 @@ class SbyTask(SbyConfig): return [proc] - assert False + self.error(f"Invalid model name: {model_name}") def model(self, model_name): if model_name not in self.models: @@ -827,6 +828,8 @@ class SbyTask(SbyConfig): self.handle_int_option("skip", None) self.handle_str_option("tbtop", None) + self.handle_str_option("make_model", None) + def setup_procs(self, setupmode): self.handle_non_engine_options() if self.opt_smtc is not None: @@ -854,6 +857,13 @@ class SbyTask(SbyConfig): self.retcode = 0 return + if self.opt_make_model is not None: + for name in self.opt_make_model.split(","): + self.model(name.strip()) + + for proc in self.procs_pending: + proc.wait = True + if self.opt_mode == "bmc": import sby_mode_bmc sby_mode_bmc.run(self) From 3412ea859ba6510fda22aa3de140af78929f9d14 Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Fri, 5 Aug 2022 15:51:11 +0200 Subject: [PATCH 7/8] New "none" engine to be used with the "make_model" option --- docs/source/reference.rst | 9 +++++++++ sbysrc/sby_core.py | 9 +++++---- sbysrc/sby_mode_bmc.py | 3 +++ sbysrc/sby_mode_cover.py | 3 +++ sbysrc/sby_mode_live.py | 3 +++ sbysrc/sby_mode_prove.py | 3 +++ 6 files changed, 26 insertions(+), 4 deletions(-) diff --git a/docs/source/reference.rst b/docs/source/reference.rst index 447673a..710ba7b 100644 --- a/docs/source/reference.rst +++ b/docs/source/reference.rst @@ -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 -------------- diff --git a/sbysrc/sby_core.py b/sbysrc/sby_core.py index 2a1a994..7eab277 100644 --- a/sbysrc/sby_core.py +++ b/sbysrc/sby_core.py @@ -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) diff --git a/sbysrc/sby_mode_bmc.py b/sbysrc/sby_mode_bmc.py index 78324ed..cc4eba7 100644 --- a/sbysrc/sby_mode_bmc.py +++ b/sbysrc/sby_mode_bmc.py @@ -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.") diff --git a/sbysrc/sby_mode_cover.py b/sbysrc/sby_mode_cover.py index d7705ee..8fb1da9 100644 --- a/sbysrc/sby_mode_cover.py +++ b/sbysrc/sby_mode_cover.py @@ -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.") diff --git a/sbysrc/sby_mode_live.py b/sbysrc/sby_mode_live.py index 46b556f..6746200 100644 --- a/sbysrc/sby_mode_live.py +++ b/sbysrc/sby_mode_live.py @@ -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.") diff --git a/sbysrc/sby_mode_prove.py b/sbysrc/sby_mode_prove.py index 3abadf7..1f62bb9 100644 --- a/sbysrc/sby_mode_prove.py +++ b/sbysrc/sby_mode_prove.py @@ -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.") From 0aebf0b4d0b0693917560972b5fb022f8f081d1c Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Mon, 8 Aug 2022 14:25:48 +0200 Subject: [PATCH 8/8] 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. --- sbysrc/sby_core.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sbysrc/sby_core.py b/sbysrc/sby_core.py index 7eab277..366817f 100644 --- a/sbysrc/sby_core.py +++ b/sbysrc/sby_core.py @@ -726,8 +726,6 @@ class SbyTask(SbyConfig): print(f"# running in {self.workdir}/model/", file=f) print("read_ilang design_prep.il", 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("setundef -undriven -anyseq", file=f) print("setattr -unset keep", file=f) @@ -735,6 +733,9 @@ class SbyTask(SbyConfig): print("opt -full", file=f) print("techmap", 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("abc -g AND -fast", file=f) print("opt_clean", file=f)