diff options
author | Daniel R. Carvalho <odanrc@yahoo.com.br> | 2019-07-29 16:36:59 +0200 |
---|---|---|
committer | Daniel Carvalho <odanrc@yahoo.com.br> | 2019-11-04 21:32:22 +0000 |
commit | b8a4a911eed17315320a6948d369f791617adfeb (patch) | |
tree | d5ae4c1545c174fb11b39e5b013da7af28751f7c /src/mem/cache/compressors/SConscript | |
parent | 2cb1449ede402e3ad242ae97ee959a41683e8ca3 (diff) | |
download | gem5-b8a4a911eed17315320a6948d369f791617adfeb.tar.xz |
mem-cache: Implement a multi compressor
Implement a compressor that contains multiple sub-compressors and
choses the one that provides the best compression results for each
compression.
Change-Id: I758cf67c84bd85edbea16b2a07b2068b00454461
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/21158
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/mem/cache/compressors/SConscript')
-rw-r--r-- | src/mem/cache/compressors/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mem/cache/compressors/SConscript b/src/mem/cache/compressors/SConscript index 517ec522a..c3f22b8b6 100644 --- a/src/mem/cache/compressors/SConscript +++ b/src/mem/cache/compressors/SConscript @@ -38,5 +38,6 @@ Source('base_delta.cc') Source('bdi.cc') Source('cpack.cc') Source('fpcd.cc') +Source('multi.cc') Source('repeated_qwords.cc') Source('zero.cc') |