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

Build(deps): Bump third_party/OpenROAD-flow-scripts from 62325bf to a80f70e #2480

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
52 changes: 36 additions & 16 deletions tests/black_parrot/orfs_patches/0001_use_uhdm.patch
Original file line number Diff line number Diff line change
@@ -1,29 +1,46 @@
diff --git a/flow/Makefile b/flow/Makefile
index 74fcf58c..91922b1b 100644
index aa6f506..b9894e6 100644
--- a/flow/Makefile
+++ b/flow/Makefile
@@ -419,8 +419,7 @@ $(WRAPPED_LIBS):
# |____/ |_| |_| \_| |_| |_| |_|_____|____/___|____/
#
.PHONY: synth
-synth: versions.txt \
- $(RESULTS_DIR)/1_synth.v \
+synth: $(RESULTS_DIR)/1_synth.v \
$(RESULTS_DIR)/1_synth.sdc
@@ -462,7 +462,7 @@ synth: $(RESULTS_DIR)/1_synth.v \

.PHONY: synth-report
synth-report: synth
- $(UNSET_AND_MAKE) do-synth-report
+ $(MAKE) do-synth-report

.PHONY: do-synth-report
do-synth-report:
@@ -504,7 +504,7 @@ do-yosys: yosys-dependencies
($(TIME_CMD) $(YOSYS_CMD) $(YOSYS_FLAGS) -c $(SYNTH_SCRIPT)) 2>&1 | tee $(LOG_DIR)/1_1_yosys.log

$(RESULTS_DIR)/1_1_yosys.v: $(SDC_FILE_CLOCK_PERIOD)
- $(UNSET_AND_MAKE) do-yosys
+ $(MAKE) do-yosys

$(RESULTS_DIR)/1_synth.sdc: $(SDC_FILE)
mkdir -p $(REPORTS_DIR)
@@ -516,7 +516,7 @@ do-synth:
cp $(RESULTS_DIR)/1_1_yosys.v $(RESULTS_DIR)/1_synth.v

$(RESULTS_DIR)/1_synth.v: $(RESULTS_DIR)/1_1_yosys.v
- $(UNSET_AND_MAKE) do-synth
+ $(MAKE) do-synth

.PHONY: clean_synth
clean_synth:
diff --git a/flow/scripts/synth_preamble.tcl b/flow/scripts/synth_preamble.tcl
index ae082367..6bc9f486 100644
index fdb3bbf..69a465d 100644
--- a/flow/scripts/synth_preamble.tcl
+++ b/flow/scripts/synth_preamble.tcl
@@ -1,4 +1,6 @@
yosys -import
+plugin -i systemverilog
+yosys -import

if {[info exist ::env(CACHED_NETLIST)]} {
exec cp $::env(CACHED_NETLIST) $::env(RESULTS_DIR)/1_1_yosys.v
@@ -8,20 +10,8 @@ if {[info exist ::env(CACHED_NETLIST)]} {
source $::env(SCRIPTS_DIR)/util.tcl

@@ -10,23 +12,7 @@ if {[info exist ::env(CACHED_NETLIST)]} {
exit
}

Expand All @@ -37,11 +54,14 @@ index ae082367..6bc9f486 100644
-}
-
-
# Read verilog files
-# Read verilog files
-foreach file $::env(VERILOG_FILES) {
- read_verilog -defer -sv {*}$vIdirsArgs $file
-}
-
-
-
+read_uhdm $::env(BLACKPARROT_UHDM)



# Read standard cells and macros as blackbox inputs
# These libs have their dont_use properties set accordingly
2 changes: 1 addition & 1 deletion third_party/OpenROAD-flow-scripts
Loading