Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MINOTAuR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MINOTAuR
MINOTAuR
Commits
e2834644
Commit
e2834644
authored
4 years ago
by
Alban Gruin
Browse files
Options
Downloads
Patches
Plain Diff
ariane_pkg: reduce queue sizes to 1
Signed-off-by:
Alban Gruin
<
alban.gruin@univ-tlse3.fr
>
parent
203ee4e9
Branches
sicariane
No related tags found
No related merge requests found
Pipeline
#460
failed
3 years ago
Stage: build
Stage: write-back
Stage: write-through
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/ariane_pkg.sv
+2
-2
2 additions, 2 deletions
include/ariane_pkg.sv
with
2 additions
and
2 deletions
include/ariane_pkg.sv
+
2
−
2
View file @
e2834644
...
@@ -128,7 +128,7 @@ package ariane_pkg;
...
@@ -128,7 +128,7 @@ package ariane_pkg;
endfunction
:
is_inside_cacheable_regions
endfunction
:
is_inside_cacheable_regions
// TODO: Slowly move those parameters to the new system.
// TODO: Slowly move those parameters to the new system.
localparam
NR_SB_ENTRIES
=
8
;
// number of scoreboard entries
localparam
NR_SB_ENTRIES
=
2
;
// number of scoreboard entries
localparam
TRANS_ID_BITS
=
$
clog2
(
NR_SB_ENTRIES
);
// depending on the number of scoreboard entries we need that many bits
localparam
TRANS_ID_BITS
=
$
clog2
(
NR_SB_ENTRIES
);
// depending on the number of scoreboard entries we need that many bits
// to uniquely identify the entry in the scoreboard
// to uniquely identify the entry in the scoreboard
localparam
ASID_WIDTH
=
(
riscv
::
XLEN
==
64
)
?
16
:
1
;
localparam
ASID_WIDTH
=
(
riscv
::
XLEN
==
64
)
?
16
:
1
;
...
@@ -278,7 +278,7 @@ package ariane_pkg;
...
@@ -278,7 +278,7 @@ package ariane_pkg;
// ---------------
// ---------------
// leave as is (fails with >8 entries and wider fetch width)
// leave as is (fails with >8 entries and wider fetch width)
localparam
int
unsigned
FETCH_FIFO_DEPTH
=
4
;
localparam
int
unsigned
FETCH_FIFO_DEPTH
=
1
;
localparam
int
unsigned
FETCH_WIDTH
=
32
;
localparam
int
unsigned
FETCH_WIDTH
=
32
;
// maximum instructions we can fetch on one request (we support compressed instructions)
// maximum instructions we can fetch on one request (we support compressed instructions)
localparam
int
unsigned
INSTR_PER_FETCH
=
FETCH_WIDTH
/
16
;
localparam
int
unsigned
INSTR_PER_FETCH
=
FETCH_WIDTH
/
16
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment