Skip to content

Commit 3bd6e3b

Browse files
committed
fix uv lock, fix log_path for new ray (changed working directory to /tmp instead of local)
Signed-off-by: Jack Luar <[email protected]>
1 parent 53ff9b2 commit 3bd6e3b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

tools/AutoTuner/src/autotuner/utils.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,12 @@ def openroad(
306306
run_command(args, f"mkdir -p {log_path}")
307307
run_command(args, f"mkdir -p {report_path}")
308308
else:
309-
log_path = report_path = os.getcwd() + "/"
309+
log_path = os.path.abspath(
310+
os.path.join(base_dir, f"flow/logs/{args.platform}/{args.design}")
311+
)
312+
report_path = os.path.abspath(
313+
os.path.join(base_dir, f"flow/reports/{args.platform}/{args.design}")
314+
)
310315

311316
if install_path is None:
312317
install_path = os.path.join(base_dir, "tools/install")

tools/AutoTuner/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)