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 52b1f22 commit 5a2c730Copy full SHA for 5a2c730
tools/AutoTuner/src/autotuner/utils.py
@@ -325,7 +325,7 @@ def openroad(
325
326
make_command = export_command
327
if args.memory_limit is not None:
328
- make_command += f"ulimit -m {args.memory_limit * 1_000_000}; "
+ make_command += f"ulimit -v {args.memory_limit * 1_000_000}; "
329
make_command += f"make -C {base_dir}/flow DESIGN_CONFIG=designs/"
330
make_command += f"{args.platform}/{args.design}/config.mk"
331
make_command += f" PLATFORM={args.platform}"
0 commit comments