Skip to content

Commit c58731c

Browse files
committed
autotuner: Use NUM_CORES not NPROC (obsolete in ORFS)
Changed in 6dbf879 Signed-off-by: Matt Liberty <[email protected]>
1 parent 1cbce35 commit c58731c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/AutoTuner/src/autotuner/distributed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ def openroad(base_dir, parameters, flow_variant, path=""):
573573
make_command += f" PLATFORM={args.platform}"
574574
make_command += f" FLOW_VARIANT={flow_variant} {parameters}"
575575
make_command += f" EQUIVALENCE_CHECK=0"
576-
make_command += f" NPROC={args.openroad_threads} SHELL=bash"
576+
make_command += f" NUM_CORES={args.openroad_threads} SHELL=bash"
577577
run_command(
578578
make_command,
579579
timeout=args.timeout,

0 commit comments

Comments
 (0)