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

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

140 tgts_per_mshr = 12
141 size = '512kB'
142 assoc = 8
143 write_buffers = 16
144 prefetch_on_access = True
145 clusivity = 'mostly_excl'
146 # Simple stride prefetcher
147 prefetcher = StridePrefetcher(degree=1, 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;

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

140 tgts_per_mshr = 12
141 size = '512kB'
142 assoc = 8
143 write_buffers = 16
144 prefetch_on_access = True
145 clusivity = 'mostly_excl'
146 # Simple stride prefetcher
147 prefetcher = StridePrefetcher(degree=1, latency = 1)
148 tags = RandomRepl()
149
150
148 tags = BaseSetAssoc()
149 repl_policy = RandomRP()