Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-10-05 18:23:06 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-10-06 15:21:26 +0300
commit335f40ebfa28d36d0e4c3c562eb572554282a3ff (patch)
tree4b038ce86e83c8693a4cef50adc4f07b88c56c6f
parent03f8c1abd06e204f5a46046e71f29054a6fc0ed0 (diff)
Tests: include device type in benchmark graph labels
-rw-r--r--tests/performance/api/graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/performance/api/graph.py b/tests/performance/api/graph.py
index e54adc194de..c7d3c5043ec 100644
--- a/tests/performance/api/graph.py
+++ b/tests/performance/api/graph.py
@@ -22,7 +22,7 @@ class TestGraph:
for entry in queue.entries:
if entry.status in ('done', 'outdated'):
- device_name = entry.device_name
+ device_name = entry.device_name + " (" + entry.device_type + ")"
if device_name in devices.keys():
devices[device_name].append(entry)
else: