diff --git a/blender_render/blender.py b/blender_render/blender.py index 6e687cc..c2daefc 100644 --- a/blender_render/blender.py +++ b/blender_render/blender.py @@ -52,7 +52,7 @@ try: sys.exit(1) report = { - "test": "Blender Barbershop Render", + "test": f"Blender Barbershop Render {args.device.upper()}", "score": score, "unit": "seconds", "version": version, diff --git a/blenderbenchmark/blender.py b/blenderbenchmark/blender.py index 1574db0..99c7dd2 100644 --- a/blenderbenchmark/blender.py +++ b/blenderbenchmark/blender.py @@ -117,7 +117,7 @@ for report in json_array: scene_report = { "timestamp": report['timestamp'], "version": blender_version, - "test": f"Blender Benchmark {report['scene']['label']}", + "test": f"Blender Benchmark {report['scene']['label']} {DEVICE_TYPE}", "score": round(report['stats']['samples_per_minute'], 2), "unit": "samples per minute", "device": report['device_info']['compute_devices'][0]['name'] diff --git a/superposition/superposition.py b/superposition/superposition.py index 91ed630..f9af792 100644 --- a/superposition/superposition.py +++ b/superposition/superposition.py @@ -68,7 +68,7 @@ with open(log_path, encoding="utf-8") as log: score = match.group(1) report = { - "test": f"Unigine Superposition 2017 {args.preset}", + "test": f"Unigine Superposition 2017 {args.preset} ${args.api}", "score": score, "unit": "score" }