RubyTester.py (8832:247fee427324) RubyTester.py (8839:eeb293859255)
1# Copyright (c) 2005-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;

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

27#
28
29from MemObject import MemObject
30from m5.params import *
31from m5.proxy import *
32
33class RubyTester(MemObject):
34 type = 'RubyTester'
1# Copyright (c) 2005-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;

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

27#
28
29from MemObject import MemObject
30from m5.params import *
31from m5.proxy import *
32
33class RubyTester(MemObject):
34 type = 'RubyTester'
35 cpuPort = VectorPort("the cpu ports")
35 cpuPort = VectorMasterPort("the cpu ports")
36 checks_to_complete = Param.Int(100, "checks to complete")
37 deadlock_threshold = Param.Int(50000, "how often to check for deadlock")
38 wakeup_frequency = Param.Int(10, "number of cycles between wakeups")
39 check_flush = Param.Bool(False, "check cache flushing")
40 system = Param.System(Parent.any, "System we belong to")
36 checks_to_complete = Param.Int(100, "checks to complete")
37 deadlock_threshold = Param.Int(50000, "how often to check for deadlock")
38 wakeup_frequency = Param.Int(10, "number of cycles between wakeups")
39 check_flush = Param.Bool(False, "check cache flushing")
40 system = Param.System(Parent.any, "System we belong to")