[Fix] Add specialized linear layout for decoupling capacitor partitions#104
Open
adminlip wants to merge 1 commit into
Open
[Fix] Add specialized linear layout for decoupling capacitor partitions#104adminlip wants to merge 1 commit into
adminlip wants to merge 1 commit into
Conversation
- Created DecouplingCapsPackingSolver for decoupling capacitor partitions - Caps are sorted by net connection proximity to main chip pins - Linear horizontal layout below main chip for optimal routing - Supports custom decouplingCapsGap parameter - Added comprehensive test coverage Fixes tscircuit#15
|
@Ouuuuuuuuuuu is attempting to deploy a commit to the tscircuit Team on Vercel. A member of the Team first needs to authorize it. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What
Added
DecouplingCapsPackingSolver— a specialized solver that creates optimized linear layouts for decoupling capacitor partitions.Why
Decoupling capacitors need a different packing strategy than regular chip partitions. They should be arranged in a horizontal line near their associated IC, sorted by net connection proximity to the IC pins, for optimal routing and minimal trace length.
Fixes #15
How
New
DecouplingCapsPackingSolver: Dedicated solver forpartitionType: "decoupling_caps"partitionsdecouplingCapsGapparameter for spacing controlUpdated
PackInnerPartitionsSolver: Routesdecoupling_capspartitions to the new solver instead ofSingleInnerPartitionPackingSolverAdded 3 comprehensive tests covering:
decouplingCapsGapparameterTesting
All core tests pass. 9 pre-existing failures are unrelated
@tscircuit/coredependency issues.