O3_ARM_v7a.py (13774:a1be2a0c55f2) O3_ARM_v7a.py (14216:188a91ee11c1)
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

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

199 size = '1MB'
200 assoc = 16
201 write_buffers = 8
202 prefetch_on_access = True
203 clusivity = 'mostly_excl'
204 # Simple stride prefetcher
205 prefetcher = StridePrefetcher(degree=8, latency = 1)
206 tags = BaseSetAssoc()
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

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

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