diff options
author | Po-Hao Su <supohaosu@gmail.com> | 2019-04-22 16:23:18 +0800 |
---|---|---|
committer | Po-Hao Su <supohaosu@gmail.com> | 2019-04-22 18:10:08 +0000 |
commit | 3a106e114a7008d13203af55dc54c02b34bd1069 (patch) | |
tree | 262d728b92df610c09146b221b98f601595d0995 /configs | |
parent | 7976b561de61b7523ca9a860154ad7ba701d12a7 (diff) | |
download | gem5-3a106e114a7008d13203af55dc54c02b34bd1069.tar.xz |
configs: Use param to get number of processors
Although the parameter np is the same as options.num_cpus. But we should
get the number of processors from the parameters of the function.
Change-Id: I3eb02d7c75ab35410b773b06001d1b145cdccd49
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18248
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/example/fs.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py index 9c5ef1798..bf6ae45dd 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -89,11 +89,11 @@ def build_test_system(np): elif buildEnv['TARGET_ISA'] == "sparc": test_sys = makeSparcSystem(test_mem_mode, bm[0], cmdline=cmdline) elif buildEnv['TARGET_ISA'] == "x86": - test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0], - options.ruby, cmdline=cmdline) + test_sys = makeLinuxX86System(test_mem_mode, np, bm[0], options.ruby, + cmdline=cmdline) elif buildEnv['TARGET_ISA'] == "arm": - test_sys = makeArmSystem(test_mem_mode, options.machine_type, - options.num_cpus, bm[0], options.dtb_filename, + test_sys = makeArmSystem(test_mem_mode, options.machine_type, np, + bm[0], options.dtb_filename, bare_metal=options.bare_metal, cmdline=cmdline, external_memory= |