mirror of
https://github.com/YosysHQ/sby.git
synced 2025-08-22 12:47:55 +00:00
Add "append" option
This commit is contained in:
parent
94260e01b8
commit
7be08218cb
6 changed files with 18 additions and 6 deletions
|
@ -21,11 +21,15 @@ from sby_core import SbyTask
|
|||
|
||||
def run(job):
|
||||
job.opt_depth = 20
|
||||
job.opt_append = 0
|
||||
job.opt_aigsmt = "z3"
|
||||
|
||||
if "depth" in job.options:
|
||||
job.opt_depth = int(job.options["depth"])
|
||||
|
||||
if "append" in job.options:
|
||||
job.opt_append = int(job.options["append"])
|
||||
|
||||
if "aigsmt" in job.options:
|
||||
job.opt_aigsmt = job.options["aigsmt"]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue