diff options
-rw-r--r-- | src/mem/cache/prefetch/stride.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mem/cache/prefetch/stride.cc b/src/mem/cache/prefetch/stride.cc index 3ff7acda0..74c84b94f 100644 --- a/src/mem/cache/prefetch/stride.cc +++ b/src/mem/cache/prefetch/stride.cc @@ -46,6 +46,7 @@ * Stride Prefetcher template instantiations. */ +#include "base/random.hh" #include "debug/HWPrefetch.hh" #include "mem/cache/prefetch/stride.hh" @@ -176,7 +177,7 @@ StridePrefetcher::pcTableVictim(Addr pc, int master_id) { // Rand replacement for now int set = pcHash(pc); - int way = rand() % pcTableAssoc; + int way = random_mt.random<int>(0, pcTableAssoc - 1); DPRINTF(HWPrefetch, "Victimizing lookup table[%d][%d].\n", set, way); return &pcTable[master_id][set][way]; |