run.py (9790:ccc428657233) run.py (9815:3b3b94536547)
1# Copyright (c) 2005-2007 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

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

155 cwd = options.rootdir + '/apps/water-spatial'
156
157# --------------------
158# Base L1 Cache Definition
159# ====================
160
161class L1(BaseCache):
162 latency = options.l1latency
1# Copyright (c) 2005-2007 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

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

155 cwd = options.rootdir + '/apps/water-spatial'
156
157# --------------------
158# Base L1 Cache Definition
159# ====================
160
161class L1(BaseCache):
162 latency = options.l1latency
163 block_size = 64
164 mshrs = 12
165 tgts_per_mshr = 8
166
167# ----------------------
168# Base L2 Cache Definition
169# ----------------------
170
171class L2(BaseCache):
163 mshrs = 12
164 tgts_per_mshr = 8
165
166# ----------------------
167# Base L2 Cache Definition
168# ----------------------
169
170class L2(BaseCache):
172 block_size = 64
173 latency = options.l2latency
174 mshrs = 92
175 tgts_per_mshr = 16
176 write_buffers = 8
177
178# ----------------------
179# Define the cpus
180# ----------------------

--- 109 unchanged lines hidden ---
171 latency = options.l2latency
172 mshrs = 92
173 tgts_per_mshr = 16
174 write_buffers = 8
175
176# ----------------------
177# Define the cpus
178# ----------------------

--- 109 unchanged lines hidden ---