diff options
author | Tushar Krishna <tushar@ece.gatech.edu> | 2016-10-06 14:35:17 -0400 |
---|---|---|
committer | Tushar Krishna <tushar@ece.gatech.edu> | 2016-10-06 14:35:17 -0400 |
commit | b9e23a6d741cdcdf0ffb7364c6aae36a487335ef (patch) | |
tree | d81337a49324e0aa1829308aa76a93e8b3144997 /configs/example/apu_se.py | |
parent | 0f68b50ff11a957a9c8d31b592c75e659f8a1023 (diff) | |
download | gem5-b9e23a6d741cdcdf0ffb7364c6aae36a487335ef.tar.xz |
config: add a separate config file for the network.
This patch adds a new file configs/network/Network.py to setup the network,
instead of doing that within Ruby.py.
Diffstat (limited to 'configs/example/apu_se.py')
-rw-r--r-- | configs/example/apu_se.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/example/apu_se.py b/configs/example/apu_se.py index a044c9a43..2069daccb 100644 --- a/configs/example/apu_se.py +++ b/configs/example/apu_se.py @@ -43,11 +43,13 @@ from m5.objects import * from m5.util import addToPath addToPath('../ruby') +addToPath('../network') addToPath('../common') addToPath('../topologies') import Options import Ruby +import Network import Simulation import GPUTLBOptions, GPUTLBConfig @@ -157,6 +159,7 @@ parser.add_option('--fast-forward-pseudo-op', action='store_true', Ruby.define_options(parser) +Network.define_options(parser) #add TLB options to the parser GPUTLBOptions.tlb_options(parser) |