-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from daveshah1/up5k_improve
UltraPlus Timing Analysis Improvements
- Loading branch information
Showing
12 changed files
with
18,362 additions
and
3,503 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ bitdata_*.txt | |
data_*.txt | ||
database_*.txt | ||
timings_*.html | ||
tmedges_unrenamed.tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import sys, os | ||
|
||
dsptype = None | ||
dsppath = sys.argv[1].replace(".vsb", ".dsp") | ||
|
||
if os.path.exists(dsppath): | ||
with open(dsppath, 'r') as f: | ||
dsptype = f.readline().strip() | ||
|
||
with open("tmedges.tmp", "a") as outfile: | ||
with open("tmedges_unrenamed.tmp", "r") as infile: | ||
for line in infile: | ||
if "SB_MAC16" in line: | ||
if dsptype is not None: | ||
outfile.write(line.replace("SB_MAC16", dsptype)) | ||
else: | ||
outfile.write(line) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
while true; do | ||
rm -rf data_5k_*.txt work_5k_* | ||
make DEVICECLASS=5k -j3 | ||
make DEVICECLASS=5k timings | ||
done |
Oops, something went wrong.