Skip to content

Commit 10122b9

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 f24b4f7 commit 10122b9

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
@@ -271,7 +271,12 @@ def openroad(
271271
run_command(args, f"mkdir -p {log_path}")
272272
run_command(args, f"mkdir -p {report_path}")
273273
else:
274-
log_path = report_path = os.getcwd() + "/"
274+
log_path = os.path.abspath(
275+
os.path.join(base_dir, f"flow/logs/{args.platform}/{args.design}")
276+
)
277+
report_path = os.path.abspath(
278+
os.path.join(base_dir, f"flow/reports/{args.platform}/{args.design}")
279+
)
275280

276281
if install_path is None:
277282
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)