-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Add MemPool-Spatz and MinPool-Spatz FPU configurations 2. WIP: Add FPU support for these configurations. 3. Various bug fix.
- Loading branch information
msc23h24 Diyou Shen (dishen)
committed
Dec 1, 2023
1 parent
fca9e9b
commit e447292
Showing
22 changed files
with
1,888 additions
and
62 deletions.
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
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 |
---|---|---|
|
@@ -38,4 +38,4 @@ n_ipu ?= 4 | |
n_fpu ?= 0 | ||
|
||
# Deactivate the XpulpIMG extension | ||
xpulpimg ?= 0 | ||
xpulpimg ?= 0 |
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,43 @@ | ||
# 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: Matheus Cavalcante, ETH Zurich | ||
|
||
############### | ||
## MemPool ## | ||
############### | ||
|
||
# Number of cores | ||
num_cores ?= 64 | ||
|
||
# Number of groups | ||
num_groups ?= 4 | ||
|
||
# Number of cores per MemPool tile | ||
num_cores_per_tile ?= 1 | ||
|
||
# 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 | ||
|
||
# Activate Spatz and RVV | ||
spatz ?= 1 | ||
|
||
# Lenght of single vector register | ||
vlen ?= 512 | ||
|
||
# Number of IPUs | ||
n_ipu ?= 4 | ||
|
||
n_fpu ?= 4 | ||
|
||
# Deactivate the XpulpIMG extension | ||
xpulpimg ?= 0 | ||
|
||
rvf ?= 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# 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: Matheus Cavalcante, ETH Zurich | ||
|
||
############### | ||
## MemPool ## | ||
############### | ||
|
||
# Number of cores | ||
num_cores ?= 4 | ||
|
||
# Number of groups | ||
num_groups ?= 4 | ||
|
||
# Number of cores per MemPool tile | ||
num_cores_per_tile ?= 1 | ||
|
||
# L1 scratchpad banking factor | ||
banking_factor ?= 4 | ||
|
||
######################### | ||
## AXI configuration ## | ||
######################### | ||
# AXI bus data width (in bits) | ||
axi_data_width ?= 256 | ||
|
||
# Read-only cache line width in AXI interconnect (in bits) | ||
ro_line_width ?= 256 | ||
|
||
# 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 | ||
|
||
# Activate Spatz and RVV | ||
spatz ?= 1 | ||
|
||
# Lenght of single vector register | ||
vlen ?= 512 | ||
|
||
# Number of IPUs | ||
n_ipu ?= 4 | ||
|
||
n_fpu ?= 0 | ||
|
||
# Deactivate the XpulpIMG extension | ||
xpulpimg ?= 0 |
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,55 @@ | ||
# 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: Matheus Cavalcante, ETH Zurich | ||
|
||
############### | ||
## MemPool ## | ||
############### | ||
|
||
# Number of cores | ||
num_cores ?= 4 | ||
|
||
# Number of groups | ||
num_groups ?= 4 | ||
|
||
# Number of cores per MemPool tile | ||
num_cores_per_tile ?= 1 | ||
|
||
# L1 scratchpad banking factor | ||
banking_factor ?= 4 | ||
|
||
######################### | ||
## AXI configuration ## | ||
######################### | ||
# AXI bus data width (in bits) | ||
axi_data_width ?= 256 | ||
|
||
# Read-only cache line width in AXI interconnect (in bits) | ||
ro_line_width ?= 256 | ||
|
||
# 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 | ||
|
||
# Activate Spatz and RVV | ||
spatz ?= 1 | ||
|
||
# Lenght of single vector register | ||
vlen ?= 512 | ||
|
||
# Number of IPUs | ||
n_ipu ?= 4 | ||
|
||
n_fpu ?= 4 | ||
|
||
rvf ?= 1 | ||
|
||
# Deactivate the XpulpIMG extension | ||
xpulpimg ?= 0 |
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.