MOESI_hammer.py (13885:d10ea5e56cb0) MOESI_hammer.py (13951:b8ec67ca5e42)
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2009 Advanced Micro Devices, Inc.
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;

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

28# Authors: Brad Beckmann
29
30import math
31import m5
32from m5.objects import *
33from m5.defines import buildEnv
34from Ruby import create_topology, create_directories
35from Ruby import send_evicts
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2009 Advanced Micro Devices, Inc.
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;

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

28# Authors: Brad Beckmann
29
30import math
31import m5
32from m5.objects import *
33from m5.defines import buildEnv
34from Ruby import create_topology, create_directories
35from Ruby import send_evicts
36import FileSystemConfig
36from common import FileSystemConfig
37
38#
39# Declare caches used by the protocol
40#
41class L1Cache(RubyCache): pass
42class L2Cache(RubyCache): pass
43#
44# Probe filter is a cache

--- 247 unchanged lines hidden ---
37
38#
39# Declare caches used by the protocol
40#
41class L1Cache(RubyCache): pass
42class L2Cache(RubyCache): pass
43#
44# Probe filter is a cache

--- 247 unchanged lines hidden ---