Skip to content

Commit

Permalink
[config] Set the default stack size to 128 words
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelRiedel committed Oct 11, 2023
1 parent 74d37cc commit 0a7af83
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Add Channel Estimation application and kernels
- Update Bender to version 0.27.3
- Update default Questasim version to 2022.3
- Decrease stack size to 128 words

### Fixed
- Fix type issue in `snitch_addr_demux`
Expand Down
4 changes: 2 additions & 2 deletions config/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ l1_bank_size ?= 1024

# Size of sequential memory per core (in bytes)
# (must be a power of two)
seq_mem_size ?= 1024
seq_mem_size ?= 512

# Size of stack in sequential memory per core (in bytes)
stack_size ?= 1024
stack_size ?= 512

#########################
## AXI configuration ##
Expand Down
2 changes: 1 addition & 1 deletion config/systolic.mk
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ axi_masters_per_group ?= 1

# Size of sequential memory per core (in bytes)
# (must be a power of two)
seq_mem_size ?= 2048
seq_mem_size ?= 1024

#############################
## Xqueues configuration ##
Expand Down

0 comments on commit 0a7af83

Please sign in to comment.