aboutsummaryrefslogtreecommitdiff
path: root/icefuzz/Makefile
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-01-30 17:13:37 +0100
committerGitHub <noreply@github.com>2018-01-30 17:13:37 +0100
commit722790ad3cdb497e1b13cd1b4368d8380371eb37 (patch)
tree8edd2abd05093d42fe06a6d7b8b2d27e3b56c99c /icefuzz/Makefile
parent479467a50da0bd604a52116dcefbacf36bc601bd (diff)
parent6efb7f7cc2a9ddb07f9436739387f182014e1855 (diff)
Merge pull request #119 from daveshah1/up5k_improve
UltraPlus Timing Analysis Improvements
Diffstat (limited to 'icefuzz/Makefile')
-rw-r--r--icefuzz/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/icefuzz/Makefile b/icefuzz/Makefile
index 12b7862..a2a40b4 100644
--- a/icefuzz/Makefile
+++ b/icefuzz/Makefile
@@ -77,7 +77,7 @@ endif
timings:
ifeq ($(DEVICECLASS),5k)
cp tmedges.txt tmedges.tmp
- set -e; for f in work_$(DEVICECLASS)_*/*.vsb; do echo $$f; sed '/defparam/d' < $$f > $$f.fixed; yosys -q -f verilog -s tmedges.ys $$f.fixed; done
+ set -e; for f in work_$(DEVICECLASS)_*/*.vsb; do echo $$f; sed '/defparam/d' < $$f > $$f.fixed; yosys -q -f verilog -s tmedges.ys $$f.fixed; python3 rename_dsps.py $$f; done
sort -u tmedges.tmp > tmedges.txt && rm -f tmedges.tmp
python3 timings.py -t timings_up5k.txt work_*/*.sdf > timings_up5k.new
mv timings_up5k.new timings_up5k.txt