Ruby.py (6903:27f47cf65ab7) Ruby.py (6905:12390db623b4)
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;

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

50
51 #
52 # Important: the topology constructor must be called before the network
53 # constructor.
54 #
55 network = SimpleNetwork(topology = makeCrossbar(all_cntrls))
56
57 #
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;

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

50
51 #
52 # Important: the topology constructor must be called before the network
53 # constructor.
54 #
55 network = SimpleNetwork(topology = makeCrossbar(all_cntrls))
56
57 #
58 # determine the total memory size of the ruby system
58 # determine the total memory size of the ruby system and verify it is equal
59 # to physmem
59 #
60 total_mem_size = MemorySize('0B')
61 for dir_cntrl in dir_cntrls:
62 total_mem_size.value += dir_cntrl.directory.size.value
60 #
61 total_mem_size = MemorySize('0B')
62 for dir_cntrl in dir_cntrls:
63 total_mem_size.value += dir_cntrl.directory.size.value
64 physmem_size = long(physmem.range.second) - long(physmem.range.first) + 1
65 assert(total_mem_size.value == physmem_size)
63
64 ruby_profiler = RubyProfiler(num_of_sequencers = len(cpu_sequencers))
65
66 ruby = RubySystem(clock = options.clock,
67 network = network,
68 profiler = ruby_profiler,
69 tracer = RubyTracer(),
70 debug = RubyDebug(filter_string = 'none',
71 verbosity_string = 'none',
72 protocol_trace = False),
73 mem_size = total_mem_size)
74
75 ruby.cpu_ruby_ports = cpu_sequencers
76
77 return ruby
66
67 ruby_profiler = RubyProfiler(num_of_sequencers = len(cpu_sequencers))
68
69 ruby = RubySystem(clock = options.clock,
70 network = network,
71 profiler = ruby_profiler,
72 tracer = RubyTracer(),
73 debug = RubyDebug(filter_string = 'none',
74 verbosity_string = 'none',
75 protocol_trace = False),
76 mem_size = total_mem_size)
77
78 ruby.cpu_ruby_ports = cpu_sequencers
79
80 return ruby