aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/src/pyarmnn/_utilities/profiling_helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyarmnn/src/pyarmnn/_utilities/profiling_helper.py')
-rw-r--r--python/pyarmnn/src/pyarmnn/_utilities/profiling_helper.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/python/pyarmnn/src/pyarmnn/_utilities/profiling_helper.py b/python/pyarmnn/src/pyarmnn/_utilities/profiling_helper.py
index c6e0718722..ecde040d81 100644
--- a/python/pyarmnn/src/pyarmnn/_utilities/profiling_helper.py
+++ b/python/pyarmnn/src/pyarmnn/_utilities/profiling_helper.py
@@ -53,8 +53,11 @@ def get_profiling_data(profiler: 'IProfiler') -> ProfilerData:
top_level_dict = json.loads(profiler.as_json())
armnn_data = top_level_dict["ArmNN"]
- inference_measurements = armnn_data["inference_measurements_#1"]
- execution_data = inference_measurements["Execute_#2"]
+ #Get the inference measurements dict, this will be just one value for key starting with "inference_measurements"
+ inference_measurements = [v for k, v in armnn_data.items() if k.startswith("inference_measurements_")][0]
+
+ #Get the execution data dict, this will be just one value for key starting with "Execute_"
+ execution_data = [v for k, v in inference_measurements.items() if k.startswith("Execute_")][0]
workload_data = {}
inference_data = {}