Unverified Commit ed62cd5d authored by Dan Field's avatar Dan Field Committed by GitHub

Avoid reporting frame/raster times for large image changer (#88454)

parent 4f48155f
......@@ -15,5 +15,16 @@ Future<void> main() async {
'large_image_changer',
measureCpuGpu: true,
measureMemory: true,
// This benchmark doesn't care about frame times, frame times will be heavily
// impacted by IO time for loading the image initially.
benchmarkScoreKeys: <String>[
'average_cpu_usage',
'average_gpu_usage',
'average_memory_usage',
'90th_percentile_memory_usage',
'99th_percentile_memory_usage',
'new_gen_gc_count',
'old_gen_gc_count',
],
).run);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment