System.py (9790:ccc428657233) System.py (9814:7ad2b0186a32)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2011 Regents of the University of California
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;

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

58 "All memories in the system")
59 mem_mode = Param.MemoryMode('atomic', "The mode the memory system is in")
60
61 # The memory ranges are to be populated when creating the system
62 # such that these can be passed from the I/O subsystem through an
63 # I/O bridge or cache
64 mem_ranges = VectorParam.AddrRange([], "Ranges that constitute main memory")
65
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2011 Regents of the University of California
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;

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

58 "All memories in the system")
59 mem_mode = Param.MemoryMode('atomic', "The mode the memory system is in")
60
61 # The memory ranges are to be populated when creating the system
62 # such that these can be passed from the I/O subsystem through an
63 # I/O bridge or cache
64 mem_ranges = VectorParam.AddrRange([], "Ranges that constitute main memory")
65
66 cache_line_size = Param.Unsigned(64, "Cache line size in bytes")
67
66 work_item_id = Param.Int(-1, "specific work item id")
67 num_work_ids = Param.Int(16, "Number of distinct work item types")
68 work_begin_cpu_id_exit = Param.Int(-1,
69 "work started on specific id, now exit simulation")
70 work_begin_ckpt_count = Param.Counter(0,
71 "create checkpoint when work items begin count value is reached")
72 work_begin_exit_count = Param.Counter(0,
73 "exit simulation when work items begin count value is reached")

--- 14 unchanged lines hidden ---
68 work_item_id = Param.Int(-1, "specific work item id")
69 num_work_ids = Param.Int(16, "Number of distinct work item types")
70 work_begin_cpu_id_exit = Param.Int(-1,
71 "work started on specific id, now exit simulation")
72 work_begin_ckpt_count = Param.Counter(0,
73 "create checkpoint when work items begin count value is reached")
74 work_begin_exit_count = Param.Counter(0,
75 "exit simulation when work items begin count value is reached")

--- 14 unchanged lines hidden ---