-
Notifications
You must be signed in to change notification settings - Fork 414
[Packer] Pack Pattern Get Sink #2991
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
6e86533
[vpr][pack] update prepack get_sink
amin1377 3497838
[vpr][pack] update prepack get_driving_block
amin1377 0008292
[pack][prepack] fix the bug with finding sink pin id
amin1377 a777170
[vpr][pack] skip if net is not valid
amin1377 f4c6ee8
[vpr][pack] consider nets with fan-out of more than one only if pack …
amin1377 7a4ff26
[vpr][pack] add comment
amin1377 17afb8c
make format
amin1377 6fa2422
[vpr][pack] remove nested ifs and add comments
amin1377 b4587bc
[vpr][pack] skip the blocck if it is connected to ff and another block
amin1377 48ba9b0
[vpr][pack] don't separate chain pattern w/ non-chain
amin1377 00d6d94
[vpr][pack] update comments
amin1377 d7549ca
[vpr][pack] remove is_chan_patter parameter
amin1377 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 hidden or 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
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.
Isn't this limitation still there? Based on your code changes, it appears as though you have just handled the special case where this is a chain pattern.
Is it possible for these changes to be generalized? If its complicated I would leave as a TODO at least so people are aware of this limitation.
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.
I gave some thought to making it more general, but the only viable way I can think of to prevent the issue I mentioned, where both the registered and unregistered outputs of a LUT are used, is to allow breaking a molecule during packing. As you definitely know (!), that’s not a trivial task.
I’ve added the following TODO comment: