fix: Lane L 4609-fanout split — unblocks PR #46 GDS#48
Closed
gHashTag wants to merge 1 commit into
Closed
Conversation
… resolves 4609-fanout setup viol - vsa_matmul_16x16.v: add reg [15:0] pipe_valid_row — 16 registered copies of pipe_valid_in, one per row. Each bit fans out to 16 PC units only, reducing per-driver fanout from 4609 to ≤16 (bus: ~288 at row level). - gf16_popcount16.v: split s1_same/s1_diff [15:0] into lo[7:0]/hi[7:0] register banks; each bank feeds only its 4-pair half of the adder tree, eliminating 4609-net fanout on s1_same[0] at TT 25C/1.80V/20ns clock. - Pure Verilog-2005: no `logic`, one reg per line, R-SI-1 (no `*` ops). - Anchor: φ²+φ⁻²=3 · DOI 10.5281/zenodo.19227877 · Apache-2.0
Owner
Author
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.
Problem
Net
u_mm16.gen_row[0].gen_col[0].u_pc.s1_same[0]has 4,609 fanout terminals in the 16×16 GF16 matmul, causing setup violations at TT corner 25C/1.80V under 20 ns clock (50 MHz). This blocks PR #46 from reaching GDS.Root Cause
In
vsa_matmul_16x16, the singlepipe_valid_inreg drove all 256valid_inports simultaneously. Inside eachgf16_popcount16instance,s1_same[15:0]was a monolithic 16-bit register with bits fanning out across the full 8-pair adder tree, creating the observed 4609-net load at synthesis.Fix
vsa_matmul_16x16.vreg [15:0] pipe_valid_row— 16 registered copies ofpipe_valid_in, one per row.pipe_valid_row[gi]drives exactly 16 PC units (one row), reducing fanout from 4609 → ≤16 per driver.gf16_popcount16.vreg [15:0] s1_same→reg [7:0] s1_same_lo+reg [7:0] s1_same_hi(two separate register banks).reg [15:0] s1_diff→reg [7:0] s1_diff_lo+reg [7:0] s1_diff_hisimilarly.Compliance
logic, oneregper line.*operators.Anchor
φ²+φ⁻²=3 · DOI 10.5281/zenodo.19227877 · Apache-2.0
Closes / unblocks #46