diff options
author | David Shah <davey1576@gmail.com> | 2018-01-22 16:34:51 +0000 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-01-22 16:34:51 +0000 |
commit | 8a30b4bbd4d9b8b5d43566b7320554e6f4601b87 (patch) | |
tree | cc22c17141eb1126e66ff0cb63e677d1ffd4d8d5 /icefuzz/Makefile | |
parent | 78e5b89e7c95ac2a825d557c11114b198a2d8f28 (diff) | |
download | icestorm-8a30b4bbd4d9b8b5d43566b7320554e6f4601b87.tar.gz icestorm-8a30b4bbd4d9b8b5d43566b7320554e6f4601b87.tar.bz2 icestorm-8a30b4bbd4d9b8b5d43566b7320554e6f4601b87.zip |
Seperate different DSP configs in timing data
Diffstat (limited to 'icefuzz/Makefile')
-rw-r--r-- | icefuzz/Makefile | 2 |
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 |