mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 13:57:17 -04:00
recommended changes made + eviction partially implemented
This commit is contained in:
parent
a111e893b7
commit
be569914d7
1 changed files with 3 additions and 3 deletions
6
hw/rtl/cache/VX_flush_ctrl.sv
vendored
6
hw/rtl/cache/VX_flush_ctrl.sv
vendored
|
@ -5,10 +5,10 @@ module VX_flush_ctrl #(
|
|||
parameter CACHE_SIZE = 16384,
|
||||
// Size of line inside a bank in bytes
|
||||
parameter CACHE_LINE_SIZE = 1,
|
||||
//Swetha: added ways
|
||||
parameter WAYS = 1, //dummy value - change this to 1 later
|
||||
// Number of banks
|
||||
parameter NUM_BANKS = 1
|
||||
parameter NUM_BANKS = 1,
|
||||
// Number of associative ways
|
||||
parameter NUM_WAYS = 8
|
||||
) (
|
||||
input wire clk,
|
||||
input wire reset,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue