O3_ARM_v7a.py (12109:f29e9c5418aa) O3_ARM_v7a.py (12600:e670dd17c8cf)
1# Copyright (c) 2012 The Regents of The University of Michigan
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

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

196 tgts_per_mshr = 8
197 size = '1MB'
198 assoc = 16
199 write_buffers = 8
200 prefetch_on_access = True
201 clusivity = 'mostly_excl'
202 # Simple stride prefetcher
203 prefetcher = StridePrefetcher(degree=8, latency = 1)
1# Copyright (c) 2012 The Regents of The University of Michigan
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

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

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