diff options
author | Erfan Azarkhish <erfan.azarkhish@unibo.it> | 2015-11-03 12:17:56 -0600 |
---|---|---|
committer | Erfan Azarkhish <erfan.azarkhish@unibo.it> | 2015-11-03 12:17:56 -0600 |
commit | 100cbc9cf63af46697f129c9c10f0cc80ff7db9d (patch) | |
tree | f4b38b12cc07635fe679d4adc6071dfa46d5099e /configs/example/fs.py | |
parent | 2cb491379b17fde81c91d0a4310e6f823d34d36b (diff) | |
download | gem5-100cbc9cf63af46697f129c9c10f0cc80ff7db9d.tar.xz |
mem: hmc: top level design
This patch enables modeling a complete Hybrid Memory Cube (HMC) device. It
highly reuses the existing components in gem5's general memory system with some
small modifications. This changeset requires additional patches to model a
complete HMC device.
Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'configs/example/fs.py')
-rw-r--r-- | configs/example/fs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py index 9d8b87aaa..69b2e970a 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -215,6 +215,7 @@ def build_test_system(np): test_sys.cpu[i].createThreads() CacheConfig.config_cache(options, test_sys) + MemConfig.config_mem(options, test_sys) return test_sys |