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

This commit is contained in:
Dan Field 2021-08-18 12:12:02 -07:00 committed by GitHub
parent 4f48155fc7
commit ed62cd5dfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}