Ruby.py (6897:cfeb3d9563dd) Ruby.py (6903:27f47cf65ab7)
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;

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

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

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

49 sys.exit(1)
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 mem_size_mb = sum([int(dir_cntrl.directory.size_mb) \
58 for dir_cntrl in dir_cntrls])
57 #
58 # determine the total memory size of the ruby system
59 #
60 total_mem_size = MemorySize('0B')
61 for dir_cntrl in dir_cntrls:
62 total_mem_size.value += dir_cntrl.directory.size.value
59
60 ruby_profiler = RubyProfiler(num_of_sequencers = len(cpu_sequencers))
61
62 ruby = RubySystem(clock = options.clock,
63 network = network,
64 profiler = ruby_profiler,
65 tracer = RubyTracer(),
66 debug = RubyDebug(filter_string = 'none',
67 verbosity_string = 'none',
68 protocol_trace = False),
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),
69 mem_size_mb = mem_size_mb)
73 mem_size = total_mem_size)
70
71 ruby.cpu_ruby_ports = cpu_sequencers
72
73 return ruby
74
75 ruby.cpu_ruby_ports = cpu_sequencers
76
77 return ruby