We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2c730 commit 68564efCopy full SHA for 68564ef
tools/AutoTuner/src/autotuner/utils.py
@@ -325,7 +325,8 @@ def openroad(
325
326
make_command = export_command
327
if args.memory_limit is not None:
328
- make_command += f"ulimit -v {args.memory_limit * 1_000_000}; "
+ limit = int(args.memory_limit * 1_000_000)
329
+ make_command += f"ulimit -v {limit}; "
330
make_command += f"make -C {base_dir}/flow DESIGN_CONFIG=designs/"
331
make_command += f"{args.platform}/{args.design}/config.mk"
332
make_command += f" PLATFORM={args.platform}"
0 commit comments