Compressors.py (13944:5000533e6b81) Compressors.py (14089:fe1e5813d62c)
1# Copyright (c) 2018 Inria
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 31 unchanged lines hidden (view full) ---

40class BDI(BaseCacheCompressor):
41 type = 'BDI'
42 cxx_class = 'BDI'
43 cxx_header = "mem/cache/compressors/bdi.hh"
44
45 use_more_compressors = Param.Bool(True, "True if should use all possible" \
46 "combinations of base and delta for the compressors. False if using" \
47 "only the lowest possible delta size for each base size.");
1# Copyright (c) 2018 Inria
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 31 unchanged lines hidden (view full) ---

40class BDI(BaseCacheCompressor):
41 type = 'BDI'
42 cxx_class = 'BDI'
43 cxx_header = "mem/cache/compressors/bdi.hh"
44
45 use_more_compressors = Param.Bool(True, "True if should use all possible" \
46 "combinations of base and delta for the compressors. False if using" \
47 "only the lowest possible delta size for each base size.");
48
49class CPack(BaseCacheCompressor):
50 type = 'CPack'
51 cxx_class = 'CPack'
52 cxx_header = "mem/cache/compressors/cpack.hh"