Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

synth: use log_cmd like elsewhere to log synth command args #2041

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion flow/scripts/synth_preamble.tcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
yosys -import

source $::env(SCRIPTS_DIR)/util.tcl

if {[info exist ::env(CACHED_NETLIST)]} {
exec cp $::env(CACHED_NETLIST) $::env(RESULTS_DIR)/1_1_yosys.v
if {[info exist ::env(CACHED_REPORTS)]} {
Expand Down Expand Up @@ -108,7 +110,7 @@ close $constr

proc synthesize_check {synth_args} {
# Generic synthesis
synth -top $::env(DESIGN_NAME) -run :fine {*}$synth_args
log_cmd synth -top $::env(DESIGN_NAME) -run :fine {*}$synth_args
json -o $::env(RESULTS_DIR)/mem.json
# Run report and check here so as to fail early if this synthesis run is doomed
exec -- python3 $::env(SCRIPTS_DIR)/mem_dump.py --max-bits $::env(SYNTH_MEMORY_MAX_BITS) $::env(RESULTS_DIR)/mem.json
Expand Down
Loading