Skip to content

Commit 79b1c6b

Browse files
committed
synth: Rename to SYNTH_WRAPPED_OPERATORS
Signed-off-by: Martin Povišer <[email protected]>
1 parent 00b5f3a commit 79b1c6b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

flow/scripts/synth.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ json -o $::env(RESULTS_DIR)/mem.json
3535
# Run report and check here so as to fail early if this synthesis run is doomed
3636
exec -- python3 $::env(SCRIPTS_DIR)/mem_dump.py --max-bits $::env(SYNTH_MEMORY_MAX_BITS) $::env(RESULTS_DIR)/mem.json
3737

38-
if {![env_var_exists_and_non_empty NEW_OPERATOR_SYNTHESIS]} {
38+
if {![env_var_exists_and_non_empty SYNTH_WRAPPED_OPERATORS]} {
3939
synth -top $::env(DESIGN_NAME) -run fine: {*}$::env(SYNTH_FULL_ARGS)
4040
} else {
4141
source $::env(SCRIPTS_DIR)/synth_wrap_operators.tcl
@@ -82,7 +82,7 @@ if {[env_var_exists_and_non_empty DFF_LIB_FILE]} {
8282
}
8383
opt
8484

85-
if {![env_var_exists_and_non_empty NEW_OPERATOR_SYNTHESIS]} {
85+
if {![env_var_exists_and_non_empty SYNTH_WRAPPED_OPERATORS]} {
8686
log_cmd abc {*}$abc_args
8787
} else {
8888
scratchpad -set abc9.script scripts/abc_speed_gia_only.script
@@ -115,7 +115,7 @@ tee -o $::env(REPORTS_DIR)/synth_check.txt check
115115
tee -o $::env(REPORTS_DIR)/synth_stat.txt stat {*}$stat_libs
116116

117117
# check the design is composed exclusively of target cells, and check for other problems
118-
if {![env_var_exists_and_non_empty NEW_OPERATOR_SYNTHESIS]} {
118+
if {![env_var_exists_and_non_empty SYNTH_WRAPPED_OPERATORS]} {
119119
check -assert -mapped
120120
} else {
121121
# Wrapped operator synthesis leaves around $buf cells which `check -mapped`

flow/scripts/variables.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,10 +239,10 @@ MAX_UNGROUP_SIZE:
239239
platform's standard cell library. The default value is platform specific.
240240
stages:
241241
- synth
242-
NEW_OPERATOR_SYNTHESIS:
242+
SYNTH_WRAPPED_OPERATORS:
243243
description: >
244244
Synthesize multiple architectural options for each arithmetic operator in the
245-
design. These options are available for switching between in later stages of
245+
design. These options are available for switching among in later stages of
246246
the flow.
247247
stages:
248248
- synth

0 commit comments

Comments
 (0)