-
Notifications
You must be signed in to change notification settings - Fork 245
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
Add clock skew and hold time checks #1360
Merged
Merged
Changes from 20 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
064cb39
timing: Add hold time to bound of critical path report
rowanG077 a69d439
timing: Allow critical path traversal for shortest paths
rowanG077 a7dbfa4
timing: Start identification of min_delay violations
rowanG077 a2f5724
common: Add some convenience functions for development
rowanG077 08b1dac
timing: Report min delay violated in timing logger
rowanG077 020f411
timing: Make hold violations an error
rowanG077 2a0aa90
timing: Add clock skew to arrival and required time
rowanG077 094f0cc
timing: integrate c2c delays and cleanup code
rowanG077 7108396
timing: cleanup clock2clock reporting
rowanG077 1976ee6
log: Remove bad usage of [[no_return]]
rowanG077 cf41156
report: Handle new segment types
rowanG077 a889c3f
report: Handle new segment types
rowanG077 87f002a
timing: Fix slack calculations
rowanG077 ac2ab40
timing: minor cleanup and stupid mistake fixups
rowanG077 35bb3f3
timing: Add safe zero check function for delay_t
rowanG077 89a9549
router: Enable clock skew analysis during routing
rowanG077 946e9f7
timing_log: Fix logging indendation to match master
rowanG077 785bf13
timing: lower clock_delay_fact to 1 to check if CI passes
rowanG077 2550b14
timing: remove the articial clock delay inflation
rowanG077 9c97b87
timing: Fix hold slack not matching reported path delay
rowanG077 3eeb0e2
common: Use `NPNR_ASSERT_FALSE` for unreachable case
rowanG077 bfb5be3
timing_log: warn on min time violation when timing fail is allowed
rowanG077 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These and other enum to string function where mainly used during development. In the past I have often defined them. And now had to again. I would prefer to keep them even if currently unused because they can be handy during development.