-
Notifications
You must be signed in to change notification settings - Fork 607
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
Cts fix register top buffer position #6811
Cts fix register top buffer position #6811
Conversation
Signed-off-by: arthurjolo <arthurjolo@gmail.com>
Signed-off-by: arthurjolo <arthurjolo@gmail.com>
Signed-off-by: arthurjolo <arthurjolo@gmail.com>
clang-tidy review says "All clean, LGTM! 👍" |
1 similar comment
clang-tidy review says "All clean, LGTM! 👍" |
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 see. Iterm creation needs to come after instance creation with location. Good catch.
@arthurjolo , please rebase flow test ibex_sky130hd after merging your branch with the master. |
Signed-off-by: arthurjolo <arthurjolo@gmail.com>
Head branch was pushed to by a user without write access
clang-tidy review says "All clean, LGTM! 👍" |
Currently when CTS finds the position to place the top buffer for the register tree, that is the center of the register sink region, it considers the position of the buffer that was just created. Since the position of new instances is considered to be (0, 0) the sink region center is affected and the position of the root buffer is shifted to the bottom left.
This PR changes CTS to not consider the top buffer when finding its position avoiding this error.