diff --git a/configs/example/hmc_hello.py b/configs/example/hmc_hello.py index 4507768d3c..11d52c037b 100644 --- a/configs/example/hmc_hello.py +++ b/configs/example/hmc_hello.py @@ -49,7 +49,7 @@ options = parser.parse_args() system = System() # use timing mode for the interaction between requestor-responder ports system.mem_mode = 'timing' -# set the clock fequency of the system +# set the clock frequency of the system clk = '1GHz' vd = VoltageDomain(voltage='1V') system.clk_domain = SrcClockDomain(clock=clk, voltage_domain=vd) diff --git a/configs/example/hmctest.py b/configs/example/hmctest.py index f4c0a2c3cc..429ea4a955 100644 --- a/configs/example/hmctest.py +++ b/configs/example/hmctest.py @@ -50,7 +50,7 @@ def build_system(options): system = System() # use timing mode for the interaction between requestor-responder ports system.mem_mode = 'timing' - # set the clock fequency of the system + # set the clock frequency of the system clk = '100GHz' vd = VoltageDomain(voltage='1V') system.clk_domain = SrcClockDomain(clock=clk, voltage_domain=vd) diff --git a/configs/learning_gem5/part1/simple.py b/configs/learning_gem5/part1/simple.py index 235165b5c7..7810c3d418 100644 --- a/configs/learning_gem5/part1/simple.py +++ b/configs/learning_gem5/part1/simple.py @@ -43,7 +43,7 @@ from m5.objects import * # create the system we are going to simulate system = System() -# Set the clock fequency of the system (and all of its children) +# Set the clock frequency of the system (and all of its children) system.clk_domain = SrcClockDomain() system.clk_domain.clock = '1GHz' system.clk_domain.voltage_domain = VoltageDomain() diff --git a/configs/learning_gem5/part1/two_level.py b/configs/learning_gem5/part1/two_level.py index 591be0ce4f..7a7956c57f 100644 --- a/configs/learning_gem5/part1/two_level.py +++ b/configs/learning_gem5/part1/two_level.py @@ -70,7 +70,7 @@ args = SimpleOpts.parse_args() # create the system we are going to simulate system = System() -# Set the clock fequency of the system (and all of its children) +# Set the clock frequency of the system (and all of its children) system.clk_domain = SrcClockDomain() system.clk_domain.clock = '1GHz' system.clk_domain.voltage_domain = VoltageDomain() diff --git a/configs/learning_gem5/part2/simple_cache.py b/configs/learning_gem5/part2/simple_cache.py index adda386b4e..dc3a162aa1 100644 --- a/configs/learning_gem5/part2/simple_cache.py +++ b/configs/learning_gem5/part2/simple_cache.py @@ -39,7 +39,7 @@ from m5.objects import * # create the system we are going to simulate system = System() -# Set the clock fequency of the system (and all of its children) +# Set the clock frequency of the system (and all of its children) system.clk_domain = SrcClockDomain() system.clk_domain.clock = '1GHz' system.clk_domain.voltage_domain = VoltageDomain() diff --git a/configs/learning_gem5/part2/simple_memobj.py b/configs/learning_gem5/part2/simple_memobj.py index 49b0846f94..eaceae9069 100644 --- a/configs/learning_gem5/part2/simple_memobj.py +++ b/configs/learning_gem5/part2/simple_memobj.py @@ -39,7 +39,7 @@ from m5.objects import * # create the system we are going to simulate system = System() -# Set the clock fequency of the system (and all of its children) +# Set the clock frequency of the system (and all of its children) system.clk_domain = SrcClockDomain() system.clk_domain.clock = '1GHz' system.clk_domain.voltage_domain = VoltageDomain() diff --git a/configs/learning_gem5/part3/ruby_test.py b/configs/learning_gem5/part3/ruby_test.py index d0c391096f..05096ec53a 100644 --- a/configs/learning_gem5/part3/ruby_test.py +++ b/configs/learning_gem5/part3/ruby_test.py @@ -44,7 +44,7 @@ from test_caches import TestCacheSystem # create the system we are going to simulate system = System() -# Set the clock fequency of the system (and all of its children) +# Set the clock frequency of the system (and all of its children) system.clk_domain = SrcClockDomain() system.clk_domain.clock = '1GHz' system.clk_domain.voltage_domain = VoltageDomain() diff --git a/configs/learning_gem5/part3/simple_ruby.py b/configs/learning_gem5/part3/simple_ruby.py index 2e65ebd8ef..3d9fe9a970 100644 --- a/configs/learning_gem5/part3/simple_ruby.py +++ b/configs/learning_gem5/part3/simple_ruby.py @@ -53,7 +53,7 @@ from msi_caches import MyCacheSystem # create the system we are going to simulate system = System() -# Set the clock fequency of the system (and all of its children) +# Set the clock frequency of the system (and all of its children) system.clk_domain = SrcClockDomain() system.clk_domain.clock = '1GHz' system.clk_domain.voltage_domain = VoltageDomain()