ex5_big.py (12097:77a3d2890ba6) ex5_big.py (12600:e670dd17c8cf)
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;

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

192 tgts_per_mshr = 8
193 size = '2MB'
194 assoc = 16
195 write_buffers = 8
196 prefetch_on_access = True
197 clusivity = 'mostly_excl'
198 # Simple stride prefetcher
199 prefetcher = StridePrefetcher(degree=8, latency = 1)
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;

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

192 tgts_per_mshr = 8
193 size = '2MB'
194 assoc = 16
195 write_buffers = 8
196 prefetch_on_access = True
197 clusivity = 'mostly_excl'
198 # Simple stride prefetcher
199 prefetcher = StridePrefetcher(degree=8, latency = 1)
200 tags = RandomRepl()
200 tags = BaseSetAssoc()
201 repl_policy = RandomRP()