3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2026-07-03 01:56:09 +00:00

itp engine: fix BMC_WORKDIR path, update docs with 4-core benchmark results

This commit is contained in:
inquisitour 2026-05-15 05:05:44 +00:00
parent a6a42216f5
commit b32d0e63c3
2 changed files with 21 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}")