Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion choose_best_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,9 @@ def main() -> None:
except Exception as e: # noqa: BLE001
print(f"ERROR for fanout={f}: {e}", file=sys.stderr)

if not layouts:
if not layouts:
print("No successful layouts computed. (Did app.py error out for all?)", file=sys.stderr)
print("Hint: try running app.py manually with one of the fanouts to inspect the error.", file=sys.stderr)
sys.exit(1)

# choose best by metric (minimize)
Expand Down