ex5_LITTLE.py (13774:a1be2a0c55f2) ex5_LITTLE.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;

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

144 size = '512kB'
145 assoc = 8
146 write_buffers = 16
147 prefetch_on_access = True
148 clusivity = 'mostly_excl'
149 # Simple stride prefetcher
150 prefetcher = StridePrefetcher(degree=1, latency = 1)
151 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;

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

144 size = '512kB'
145 assoc = 8
146 write_buffers = 16
147 prefetch_on_access = True
148 clusivity = 'mostly_excl'
149 # Simple stride prefetcher
150 prefetcher = StridePrefetcher(degree=1, latency = 1)
151 tags = BaseSetAssoc()
152 repl_policy = RandomRP()
152 replacement_policy = RandomRP()