Skip to content

Commit

Permalink
cleanup old cache test
Browse files Browse the repository at this point in the history
  • Loading branch information
tinebp committed Nov 14, 2024
1 parent bffc6d9 commit dfc7b61
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 816 deletions.
4 changes: 0 additions & 4 deletions hw/rtl/cache/VX_cache.sv
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@ module VX_cache import VX_gpu_pkg::*; #(
`STATIC_ASSERT(WRITE_ENABLE || !WRITEBACK, ("invalid parameter: writeback requires write enable"))
`STATIC_ASSERT(WRITEBACK || !DIRTY_BYTES, ("invalid parameter: dirty bytes require writeback"))

// In writeback mode, memory fill response may issue a new memory request to handle evicted blocks.
// We need to ensure that the memory request queue never fills up to avoid deadlock.
`STATIC_ASSERT(!WRITEBACK || (MREQ_SIZE >= MSHR_SIZE), ("invalid parameter: writeback requires MREQ_SIZE >= MSHR_SIZE"))

localparam REQ_SEL_WIDTH = `UP(`CS_REQ_SEL_BITS);
localparam WORD_SEL_WIDTH = `UP(`CS_WORD_SEL_BITS);
localparam MSHR_ADDR_WIDTH = `LOG2UP(MSHR_SIZE);
Expand Down
3 changes: 0 additions & 3 deletions hw/unittest/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
all:
$(MAKE) -C cache
$(MAKE) -C generic_queue
$(MAKE) -C mem_streamer
$(MAKE) -C cache_top
Expand All @@ -9,7 +8,6 @@ all:
$(MAKE) -C mem_unit_top

run:
$(MAKE) -C cache run
$(MAKE) -C generic_queue run
$(MAKE) -C mem_streamer run
$(MAKE) -C cache_top run
Expand All @@ -19,7 +17,6 @@ run:
$(MAKE) -C mem_unit_top run

clean:
$(MAKE) -C cache clean
$(MAKE) -C generic_queue clean
$(MAKE) -C mem_streamer clean
$(MAKE) -C cache_top clean
Expand Down
26 changes: 0 additions & 26 deletions hw/unittest/cache/Makefile

This file was deleted.

Loading

0 comments on commit dfc7b61

Please sign in to comment.