Commit ca9ccfbb authored by Hejing Li's avatar Hejing Li
Browse files

ae: determ.py add gem5 debug flags option

parent 53fa8c2d
...@@ -52,6 +52,7 @@ servers = create_basic_hosts(e, 1, 'server', net, nic_class, host_class, ...@@ -52,6 +52,7 @@ servers = create_basic_hosts(e, 1, 'server', net, nic_class, host_class,
servers[0].node_config.nockp = 1 servers[0].node_config.nockp = 1
servers[0].cpu_freq = '3GHz' servers[0].cpu_freq = '3GHz'
servers[0].extra_main_args = ['--debug-flags=SimBricksSync,SimBricksPci,SimBricksEthernet']
# create a host # create a host
clients = create_basic_hosts(e, 1, 'client', net, nic_class, host_class, clients = create_basic_hosts(e, 1, 'client', net, nic_class, host_class,
nc_class, node.IperfUDPShortClient, ip_start=2) nc_class, node.IperfUDPShortClient, ip_start=2)
...@@ -62,6 +63,7 @@ clients[0].node_config.cores = num_cores ...@@ -62,6 +63,7 @@ clients[0].node_config.cores = num_cores
clients[0].node_config.app.is_sleep = 1 clients[0].node_config.app.is_sleep = 1
clients[0].node_config.nockp = 1 clients[0].node_config.nockp = 1
clients[0].node_config.app.is_last = True clients[0].node_config.app.is_last = True
clients[0].extra_main_args = ['--debug-flags=SimBricksSync,SimBricksPci,SimBricksEthernet']
clients[0].wait = True clients[0].wait = True
print(e.name) print(e.name)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment