Burst support#15
Open
mbertuletti wants to merge 18 commits into
Open
Conversation
DiyouS
reviewed
May 23, 2025
DiyouS
reviewed
May 23, 2025
DiyouS
reviewed
May 23, 2025
DiyouS
reviewed
May 23, 2025
micprog
reviewed
May 23, 2025
An "isburst" signal is needed to redistribute grouped responses at the initiator.
DiyouS
reviewed
Jun 5, 2025
a76e1a7 to
486a10b
Compare
1837b50 to
1598ff7
Compare
1598ff7 to
8071742
Compare
bc6fa6f to
8529a1a
Compare
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.
This PR adds burst support to the variable latency interconnect.
In systems where multiple interconnects are instantiated hierarchically, the arbitration across multiple initiators at the boundary between hierarchies causes a bottleneck in the request-per-cycle injected into the interconnect. The burst functionality solves the problem. We provide:
burst_req_groupermodule, that groups a parallel valid request in a burst request,burst_cuttermodule, that issues two bursts when the parallel request crosses the boundary between hierarchies and targets different arbitrators,burst_managermodule, that receives a burst request and translates it into a parallel request,burst_rsp_groupermodule, that increases the bandwidth of the response channel to send multiple words from a parallel response with the sameresp_valid, thus reducing congestion to the arbiters also on the response path.More details on the burst protocol applied to a system with hierarchical crossbars and wide memory requests initiators are in the following publication:
TCDM Burst Access: Breaking the Bandwidth Barrier in Shared-L1 RVV Clusters Beyond 1000 FPUs
This paper is available on arXiv:2501.14370 [cs.AR].