mem: Remove the GHB prefetcher from the source tree

There are two primary issues with this code which make it deserving of deletion.

1) GHB is a way to structure a prefetcher, not a definitive type of prefetcher
2) This prefetcher isn't even structured like a GHB prefetcher.
   It's basically a worse version of the stride prefetcher.

It primarily serves to confuse new gem5 users and most functionality is already
present in the stride prefetcher.
This commit is contained in:
Mitch Hayenga
2014-09-20 17:17:44 -04:00
parent ca3513d630
commit 3e5bf0c922
4 changed files with 0 additions and 180 deletions

View File

@@ -33,7 +33,6 @@ Import('*')
SimObject('Prefetcher.py')
Source('base.cc')
Source('ghb.cc')
Source('stride.cc')
Source('tagged.cc')