Deleted Added
sdiff udiff text old ( 9790:ccc428657233 ) new ( 9793:6e6cefc1db1f )
full compact
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2010 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;

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

64options.l1i_assoc=2
65options.l2_assoc=2
66options.l3_assoc=2
67
68#MAX CORES IS 8 with the fals sharing method
69nb_cores = 8
70
71# ruby does not support atomic, functional, or uncacheable accesses
72cpus = [ MemTest(clock = '2GHz', atomic=False, percent_functional=50,
73 percent_uncacheable=0, suppress_func_warnings=True) \
74 for i in xrange(nb_cores) ]
75
76# overwrite options.num_cpus with the nb_cores value
77options.num_cpus = nb_cores
78
79# system simulated
80system = System(cpu = cpus,
81 funcmem = SimpleMemory(in_addr_map = False),
82 physmem = SimpleMemory(null = True),
83 funcbus = NoncoherentBus())
84system.clock = options.sys_clock
85
86Ruby.create_system(options, system)
87
88assert(len(cpus) == len(system.ruby._cpu_ruby_ports))
89
90for (i, ruby_port) in enumerate(system.ruby._cpu_ruby_ports):
91 #
92 # Tie the cpu test and functional ports to the ruby cpu ports and
93 # physmem, respectively
94 #
95 cpus[i].test = ruby_port.slave

--- 20 unchanged lines hidden ---