-
Notifications
You must be signed in to change notification settings - Fork 46
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
Multicluster MemPool #115
Open
SamuelRiedel
wants to merge
14
commits into
main
Choose a base branch
from
sriedel/multicluster
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Multicluster MemPool #115
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
9b2fa6b
[hardware] Add generated control registers
SamuelRiedel 083c2f5
[hardware] Propagate atomics into the AXI interconnect
SamuelRiedel f7a45b6
[snitch] Remove deprecated snitch modules
SamuelRiedel 6e08d67
[hardware] Support atomics in the interleaved L2 banks
SamuelRiedel 5c13ddd
[hardware] Extend tcdm_adapter to support arbitrary widths
SamuelRiedel 7f5c6c3
[software] Add atomics tests
SamuelRiedel 99500e4
[hardware] Replicate the cluster and DMAs for a multi-cluster config
SamuelRiedel af8c339
[hardware] Update wave scripts
SamuelRiedel 11f4e27
[hardware] Enable multi-cluster MemPool
SamuelRiedel e9b5c49
[software] Fix stack initialization for multi-cluster MemPool
SamuelRiedel e957354
[hardware] Extend control register
SamuelRiedel db5b275
[hardware] Fix L2 interconnect for multicluster
SamuelRiedel 2b0d0ef
[hardware] Extend waves for multicluster
SamuelRiedel c18aea4
[software] Adapt runtime to multicluster
SamuelRiedel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright 2021 ETH Zurich and University of Bologna. | ||
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Author: Samuel Riedel, ETH Zurich | ||
|
||
############### | ||
## MemPool ## | ||
############### | ||
|
||
# Number of cores | ||
num_cores ?= 64 | ||
|
||
# Number of groups | ||
num_groups ?= 16 | ||
|
||
# Number of clusters | ||
num_clusters ?= 4 | ||
|
||
# Number of cores per MemPool tile | ||
num_cores_per_tile ?= 4 | ||
|
||
# L1 scratchpad banking factor | ||
banking_factor ?= 4 | ||
|
||
# Radix for hierarchical AXI interconnect | ||
axi_hier_radix ?= 20 | ||
|
||
# Number of AXI masters per group | ||
axi_masters_per_group ?= 1 | ||
|
||
|
||
######################### | ||
## AXI configuration ## | ||
######################### | ||
# AXI bus data width (in bits) | ||
axi_data_width ?= 512 | ||
|
||
# Read-only cache line width in AXI interconnect (in bits) | ||
ro_line_width ?= 512 | ||
|
||
# Number of DMA backends in each group | ||
dmas_per_group ?= 1 | ||
|
||
# Radix for hierarchical AXI interconnect | ||
axi_hier_radix ?= 2 | ||
|
||
# Number of AXI masters per group | ||
axi_masters_per_group ?= 1 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
A condition should be also added on the number of SubGroups. NumTilesPerGroup > NumSubGroups.