python: Apply Black formatter to Python files

The command executed was `black src configs tests util`.

Change-Id: I8dfaa6ab04658fea37618127d6ac19270028d771
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/47024
Maintainer: Bobby Bruce <bbruce@ucdavis.edu>
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Bobby R. Bruce
2022-07-05 11:02:25 -07:00
committed by Giacomo Travaglini
parent 1cfaa8da83
commit 787204c92d
980 changed files with 35668 additions and 22233 deletions

View File

@@ -33,7 +33,7 @@ import m5
from m5.objects import *
from m5.util import addToPath, fatal
addToPath('../../../configs/common/')
addToPath("../../../configs/common/")
from Caches import *
@@ -64,26 +64,30 @@ from Caches import *
# Create a system with a Crossbar and an Elastic Trace Player as CPU:
# Setup System:
system = System(cpu=TraceCPU(cpu_id=0),
mem_mode='timing',
mem_ranges = [AddrRange('512MB')],
cache_line_size = 64)
system = System(
cpu=TraceCPU(cpu_id=0),
mem_mode="timing",
mem_ranges=[AddrRange("512MB")],
cache_line_size=64,
)
# Create a top-level voltage domain:
system.voltage_domain = VoltageDomain()
# Create a source clock for the system. This is used as the clock period for
# xbar and memory:
system.clk_domain = SrcClockDomain(clock = '1GHz',
voltage_domain = system.voltage_domain)
system.clk_domain = SrcClockDomain(
clock="1GHz", voltage_domain=system.voltage_domain
)
# Create a CPU voltage domain:
system.cpu_voltage_domain = VoltageDomain()
# Create a separate clock domain for the CPUs. In case of Trace CPUs this clock
# is actually used only by the caches connected to the CPU:
system.cpu_clk_domain = SrcClockDomain(clock = '1GHz',
voltage_domain = system.cpu_voltage_domain)
system.cpu_clk_domain = SrcClockDomain(
clock="1GHz", voltage_domain=system.cpu_voltage_domain
)
# Setup CPU and its L1 caches:
system.cpu.createInterruptController()
@@ -93,16 +97,18 @@ system.cpu.icache.cpu_side = system.cpu.icache_port
system.cpu.dcache.cpu_side = system.cpu.dcache_port
# Assign input trace files to the eTraceCPU:
system.cpu.instTraceFile="system.cpu.traceListener.inst.gz"
system.cpu.dataTraceFile="system.cpu.traceListener.data.gz"
system.cpu.instTraceFile = "system.cpu.traceListener.inst.gz"
system.cpu.dataTraceFile = "system.cpu.traceListener.data.gz"
# Setting up L1 BUS:
system.membus = IOXBar(width = 16)
system.physmem = SimpleMemory() # This must be instantiated, even if not needed
system.membus = IOXBar(width=16)
system.physmem = (
SimpleMemory()
) # This must be instantiated, even if not needed
# Create a external TLM port:
system.tlm = ExternalSlave()
system.tlm.addr_ranges = [AddrRange('512MB')]
system.tlm.addr_ranges = [AddrRange("512MB")]
system.tlm.port_type = "tlm_slave"
system.tlm.port_data = "transactor"
@@ -114,7 +120,7 @@ system.cpu.dcache.mem_side = system.membus.slave
system.membus.master = system.tlm.port
# Start the simulation:
root = Root(full_system = False, system = system)
root.system.mem_mode = 'timing'
root = Root(full_system=False, system=system)
root.system.mem_mode = "timing"
m5.instantiate()
m5.simulate() #Simulation time specified later on commandline
m5.simulate() # Simulation time specified later on commandline

View File

@@ -50,10 +50,11 @@ import os
# Create a system with a Crossbar and a simple Memory:
system = System()
system.membus = IOXBar(width = 16)
system.physmem = SimpleMemory(range = AddrRange('512MB'))
system.clk_domain = SrcClockDomain(clock = '1.5GHz',
voltage_domain = VoltageDomain(voltage = '1V'))
system.membus = IOXBar(width=16)
system.physmem = SimpleMemory(range=AddrRange("512MB"))
system.clk_domain = SrcClockDomain(
clock="1.5GHz", voltage_domain=VoltageDomain(voltage="1V")
)
# Create a external TLM port:
system.tlm = ExternalMaster()
@@ -64,9 +65,9 @@ system.tlm.port_data = "transactor"
system.system_port = system.membus.slave
system.physmem.port = system.membus.master
system.tlm.port = system.membus.slave
system.mem_mode = 'timing'
system.mem_mode = "timing"
# Start the simulation:
root = Root(full_system = False, system = system)
root = Root(full_system=False, system=system)
m5.instantiate()
m5.simulate()

View File

@@ -52,15 +52,18 @@ from m5.objects import *
# Create a system with a Crossbar and a TrafficGenerator as CPU:
system = System()
system.membus = IOXBar(width = 16)
system.physmem = SimpleMemory() # This must be instanciated, even if not needed
system.cpu = TrafficGen(config_file = "conf/tgen.cfg")
system.clk_domain = SrcClockDomain(clock = '1.5GHz',
voltage_domain = VoltageDomain(voltage = '1V'))
system.membus = IOXBar(width=16)
system.physmem = (
SimpleMemory()
) # This must be instanciated, even if not needed
system.cpu = TrafficGen(config_file="conf/tgen.cfg")
system.clk_domain = SrcClockDomain(
clock="1.5GHz", voltage_domain=VoltageDomain(voltage="1V")
)
# Create a external TLM port:
system.tlm = ExternalSlave()
system.tlm.addr_ranges = [AddrRange('512MB')]
system.tlm.addr_ranges = [AddrRange("512MB")]
system.tlm.port_type = "tlm_slave"
system.tlm.port_data = "transactor"
@@ -70,7 +73,7 @@ system.system_port = system.membus.slave
system.membus.master = system.tlm.port
# Start the simulation:
root = Root(full_system = False, system = system)
root.system.mem_mode = 'timing'
root = Root(full_system=False, system=system)
root.system.mem_mode = "timing"
m5.instantiate()
m5.simulate() #Simulation time specified later on commandline
m5.simulate() # Simulation time specified later on commandline

View File

@@ -33,7 +33,7 @@ import m5
from m5.objects import *
from m5.util import addToPath, fatal
addToPath('../../../configs/common/')
addToPath("../../../configs/common/")
from Caches import *
@@ -71,26 +71,30 @@ from Caches import *
# Create a system with a Crossbar and an Elastic Trace Player as CPU:
# Setup System:
system = System(cpu=TraceCPU(cpu_id=0),
mem_mode='timing',
mem_ranges = [AddrRange('1024MB')],
cache_line_size = 64)
system = System(
cpu=TraceCPU(cpu_id=0),
mem_mode="timing",
mem_ranges=[AddrRange("1024MB")],
cache_line_size=64,
)
# Create a top-level voltage domain:
system.voltage_domain = VoltageDomain()
# Create a source clock for the system. This is used as the clock period for
# xbar and memory:
system.clk_domain = SrcClockDomain(clock = '1GHz',
voltage_domain = system.voltage_domain)
system.clk_domain = SrcClockDomain(
clock="1GHz", voltage_domain=system.voltage_domain
)
# Create a CPU voltage domain:
system.cpu_voltage_domain = VoltageDomain()
# Create a separate clock domain for the CPUs. In case of Trace CPUs this clock
# is actually used only by the caches connected to the CPU:
system.cpu_clk_domain = SrcClockDomain(clock = '1GHz',
voltage_domain = system.cpu_voltage_domain)
system.cpu_clk_domain = SrcClockDomain(
clock="1GHz", voltage_domain=system.cpu_voltage_domain
)
# Setup CPU and its L1 caches:
system.cpu.createInterruptController()
@@ -100,17 +104,19 @@ system.cpu.icache.cpu_side = system.cpu.icache_port
system.cpu.dcache.cpu_side = system.cpu.dcache_port
# Assign input trace files to the eTraceCPU:
system.cpu.instTraceFile="system.cpu.traceListener.inst.gz"
system.cpu.dataTraceFile="system.cpu.traceListener.data.gz"
system.cpu.instTraceFile = "system.cpu.traceListener.inst.gz"
system.cpu.dataTraceFile = "system.cpu.traceListener.data.gz"
# Setting up L1 BUS:
system.tol2bus = L2XBar()
system.l2cache = L2Cache(size="1MB")
system.physmem = SimpleMemory() # This must be instantiated, even if not needed
system.physmem = (
SimpleMemory()
) # This must be instantiated, even if not needed
# Create a external TLM port:
system.tlm = ExternalSlave()
system.tlm.addr_ranges = [AddrRange('4096MB')]
system.tlm.addr_ranges = [AddrRange("4096MB")]
system.tlm.port_type = "tlm_slave"
system.tlm.port_data = "transactor1"
@@ -124,7 +130,7 @@ system.l2cache.mem_side = system.membus.slave
system.membus.master = system.tlm.port
# Start the simulation:
root = Root(full_system = False, system = system)
root.system.mem_mode = 'timing'
root = Root(full_system=False, system=system)
root.system.mem_mode = "timing"
m5.instantiate()
m5.simulate() # Simulation time specified later on commandline
m5.simulate() # Simulation time specified later on commandline