Submission: Kevin Joseph#54
Open
nadarenator wants to merge 1 commit intopartcleda:mainfrom
Open
Conversation
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.
Submission
Solution: https://github.com/nadarenator/intern_challenge
Approach
3-phase gradient descent optimizer:
Phase 1 — Minimum wirelength initialization: Optimizes purely for wirelength, pulling each cell toward the centroid of its connections. This gives a strong starting layout biased toward short wire lengths, which carries through to the final result.
Phase 2 — Overlap elimination with exponential λ-annealing: Starts with a strong wirelength component (λ1=0.99) that preserves the phase 1 layout while overlap is eliminated. The overlap weight grows from 0.01 → 1 via an exponential schedule (k=19), ensuring large designs still converge.
Phase 3 — Wirelength fine-tuning with overlap guard: Pulls cells together to further reduce wirelength. The instant any overlap reappears, the last zero-overlap snapshot is restored and training stops. Empirically found to be redundant.