Ruby.py (6896:649e40aad897) Ruby.py (6897:cfeb3d9563dd)
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;

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

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])
59
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;

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

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])
59
60 #
61 # determine the number of memory controllers and other memory controller
62 # parameters for the profiler
63 #
64 mcCount = len(dir_cntrls)
65 banksPerRank = dir_cntrls[0].memBuffer.banks_per_rank
66 ranksPerDimm = dir_cntrls[0].memBuffer.ranks_per_dimm
67 dimmsPerChannel = dir_cntrls[0].memBuffer.dimms_per_channel
68
69 ruby_profiler = RubyProfiler(num_of_sequencers = len(cpu_sequencers),
70 mem_cntrl_count = mcCount,
71 banks_per_rank = banksPerRank,
72 ranks_per_dimm = ranksPerDimm,
73 dimms_per_channel = dimmsPerChannel)
60 ruby_profiler = RubyProfiler(num_of_sequencers = len(cpu_sequencers))
74
75 ruby = RubySystem(clock = options.clock,
76 network = network,
77 profiler = ruby_profiler,
78 tracer = RubyTracer(),
79 debug = RubyDebug(filter_string = 'none',
80 verbosity_string = 'none',
81 protocol_trace = False),
82 mem_size_mb = mem_size_mb)
83
84 ruby.cpu_ruby_ports = cpu_sequencers
85
86 return ruby
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),
69 mem_size_mb = mem_size_mb)
70
71 ruby.cpu_ruby_ports = cpu_sequencers
72
73 return ruby