Skip to content

Commit 1c083cf

Browse files
committed
Used All stages.
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent 3515fc6 commit 1c083cf

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

docs/user/FlowVariables.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,12 @@ configuration file.
439439
- [SKIP_DETAILED_ROUTE](#SKIP_DETAILED_ROUTE)
440440
- [SKIP_REPORT_METRICS](#SKIP_REPORT_METRICS)
441441

442+
## All stages variables
443+
444+
- [OPENROAD_HIERARCHICAL](#OPENROAD_HIERARCHICAL)
445+
- [SWAP_ARITH_OPERATORS](#SWAP_ARITH_OPERATORS)
446+
- [SYNTH_WRAPPED_OPERATORS](#SYNTH_WRAPPED_OPERATORS)
447+
442448
## generate_abstract variables
443449

444450
- [ABSTRACT_SOURCE](#ABSTRACT_SOURCE)
@@ -447,11 +453,6 @@ configuration file.
447453

448454
- [RULES_JSON](#RULES_JSON)
449455

450-
## All stages variables
451-
452-
- [SYNTH_WRAPPED_OPERATORS](#SYNTH_WRAPPED_OPERATORS)
453-
- [SWAP_ARITH_OPERATORS](#SWAP_ARITH_OPERATORS)
454-
455456
## Uncategorized variables
456457

457458
- [ADDITIONAL_FILES](#ADDITIONAL_FILES)
@@ -479,7 +480,6 @@ configuration file.
479480
- [KLAYOUT_TECH_FILE](#KLAYOUT_TECH_FILE)
480481
- [LIB_FILES](#LIB_FILES)
481482
- [MACRO_EXTENSION](#MACRO_EXTENSION)
482-
- [OPENROAD_HIERARCHICAL](#OPENROAD_HIERARCHICAL)
483483
- [PLATFORM](#PLATFORM)
484484
- [PLATFORM_TCL](#PLATFORM_TCL)
485485
- [PROCESS](#PROCESS)

flow/scripts/generate-variables-docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
markdown_table += table_header + table_rows
4545

46-
for stage in stages + ["All stages", "Uncategorized"]:
46+
for stage in stages + ["Uncategorized"]:
4747
markdown_table += f"## {stage} variables\n\n"
4848
stage_keys = [
4949
key

flow/scripts/variables.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,13 @@ SYNTH_WRAPPED_OPERATORS:
296296
Synthesize multiple architectural options for each arithmetic operator in the
297297
design. These options are available for switching among in later stages of
298298
the flow.
299+
stages:
300+
- All stages
299301
SWAP_ARITH_OPERATORS:
300302
description: >
301303
Improve timing QoR by swapping ALU and MULT arithmetic operators.
304+
stages:
305+
- All stages
302306
FLOORPLAN_DEF:
303307
description: |
304308
Use the DEF file to initialize floorplan.
@@ -1055,3 +1059,5 @@ OPENROAD_HIERARCHICAL:
10551059
otherwise considered flat. Will eventually be the default and
10561060
this option will be retired.
10571061
default: 0
1062+
stages:
1063+
- All stages

0 commit comments

Comments
 (0)