diff --git a/configs/example/gem5_library/x86-gapbs-benchmarks.py b/configs/example/gem5_library/x86-gapbs-benchmarks.py index 5dff8da749..407881111d 100644 --- a/configs/example/gem5_library/x86-gapbs-benchmarks.py +++ b/configs/example/gem5_library/x86-gapbs-benchmarks.py @@ -291,11 +291,11 @@ gem5stats = get_simstat(root) # sum and print them at the end. roi_insts = float( - gem5stats.to_json()["system"]["processor"]["cores2"]["core"][ + gem5stats.to_json()["system"]["processor"]["switch0"]["core"][ "exec_context.thread_0" ]["numInsts"]["value"] ) + float( - gem5stats.to_json()["system"]["processor"]["cores3"]["core"][ + gem5stats.to_json()["system"]["processor"]["switch1"]["core"][ "exec_context.thread_0" ]["numInsts"]["value"] ) diff --git a/configs/example/gem5_library/x86-npb-benchmarks.py b/configs/example/gem5_library/x86-npb-benchmarks.py index 2e74598557..b3a78c2909 100644 --- a/configs/example/gem5_library/x86-npb-benchmarks.py +++ b/configs/example/gem5_library/x86-npb-benchmarks.py @@ -309,11 +309,11 @@ gem5stats = get_simstat(root) # cores. We then sum and print them at the end. roi_insts = float( - gem5stats.to_json()["system"]["processor"]["cores2"]["core"][ + gem5stats.to_json()["system"]["processor"]["switch0"]["core"][ "exec_context.thread_0" ]["numInsts"]["value"] ) + float( - gem5stats.to_json()["system"]["processor"]["cores3"]["core"][ + gem5stats.to_json()["system"]["processor"]["switch1"]["core"][ "exec_context.thread_0" ]["numInsts"]["value"] ) diff --git a/configs/example/gem5_library/x86-parsec-benchmarks.py b/configs/example/gem5_library/x86-parsec-benchmarks.py index a071612bc8..08fa636f1e 100644 --- a/configs/example/gem5_library/x86-parsec-benchmarks.py +++ b/configs/example/gem5_library/x86-parsec-benchmarks.py @@ -279,11 +279,11 @@ gem5stats = get_simstat(root) # We get the number of committed instructions from the timing # cores. We then sum and print them at the end. roi_insts = float( - gem5stats.to_json()["system"]["processor"]["cores2"]["core"][ + gem5stats.to_json()["system"]["processor"]["switch0"]["core"][ "exec_context.thread_0" ]["numInsts"]["value"] ) + float( - gem5stats.to_json()["system"]["processor"]["cores3"]["core"][ + gem5stats.to_json()["system"]["processor"]["switch1"]["core"][ "exec_context.thread_0" ]["numInsts"]["value"] )