3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2026-06-26 22:59:02 +00:00
This commit is contained in:
Pratik Deshmukh 2026-06-16 20:33:34 +00:00 committed by GitHub
commit b34ea1b6cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 23 additions and 9 deletions

View file

@ -64,9 +64,9 @@ def run(mode, task, engine_idx, engine):
if skip >= bound:
task.error(f"engine_{engine_idx}: skip ({skip}) must be less than bound ({bound}).")
# Locate binary and derive workdir (for minisat relative path)
# Locate binary and derive workdir
bmc_binary = task.exe_paths["itp-bmc"]
bmc_workdir = os.path.dirname(os.path.realpath(bmc_binary))
bmc_workdir = os.path.abspath(f"{task.workdir}/engine_{engine_idx}")
log = task.log_prefix(f"engine_{engine_idx}")