ex5_big.py (13774:a1be2a0c55f2) ex5_big.py (14216:188a91ee11c1)
1# Copyright (c) 2012 The Regents of The University of Michigan
2# Copyright (c) 2016 Centre National de la Recherche Scientifique
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

196 size = '2MB'
197 assoc = 16
198 write_buffers = 8
199 prefetch_on_access = True
200 clusivity = 'mostly_excl'
201 # Simple stride prefetcher
202 prefetcher = StridePrefetcher(degree=8, latency = 1)
203 tags = BaseSetAssoc()
1# Copyright (c) 2012 The Regents of The University of Michigan
2# Copyright (c) 2016 Centre National de la Recherche Scientifique
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

196 size = '2MB'
197 assoc = 16
198 write_buffers = 8
199 prefetch_on_access = True
200 clusivity = 'mostly_excl'
201 # Simple stride prefetcher
202 prefetcher = StridePrefetcher(degree=8, latency = 1)
203 tags = BaseSetAssoc()
204 repl_policy = RandomRP()
204 replacement_policy = RandomRP()