Non game continued (#144)

This commit is contained in:
j-lin-lmg
2025-05-28 16:23:46 -07:00
committed by GitHub
parent 022fb0a979
commit 80a8a2b9b2
5 changed files with 34 additions and 17 deletions

View File

@@ -117,10 +117,12 @@ for report in json_array:
scene_report = {
"timestamp": report['timestamp'],
"version": blender_version,
"test": f"Blender Benchmark {report['scene']['label']} {DEVICE_TYPE}",
"test": "Blender Benchmark",
"test_parameter": f"{report['scene']['label']} ",
"score": round(report['stats']['samples_per_minute'], 2),
"unit": "samples per minute",
"device": report['device_info']['compute_devices'][0]['name']
"device": report['device_info']['compute_devices'][0]['name'],
"device_type": DEVICE_TYPE,
}
logging.info(json.dumps(scene_report, indent=2))