diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-02-12 11:54:56 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-02-12 11:54:56 +0100 |
commit | ac6d9225347af3756e61fae32d0c32d4ce73a479 (patch) | |
tree | 8b12778d5ece0129c113b0e1525c9d0e685b70fc | |
parent | d94c8d1bf065e5795199199c0fb758373aa2d365 (diff) |
Add support data (e.g. power traces) for transitions too. Fixes plots and PELT.
-rw-r--r-- | lib/loader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/loader.py b/lib/loader.py index 4b5e7b8..32b9716 100644 --- a/lib/loader.py +++ b/lib/loader.py @@ -705,7 +705,7 @@ class RawData: offline_trace_part["timeout"] ) - if online_trace_part["isa"] == "state" and "plot" in offline_trace_part: + if "plot" in offline_trace_part: online_trace_part["offline_aggregates"]["power_traces"].append( offline_trace_part["plot"][1] ) |