Remove most benchmarks of SkSL warmup (#110040)
This commit is contained in:
parent
aa9b29b748
commit
d79a3d7a19
36
.ci.yaml
36
.ci.yaml
@ -1515,15 +1515,6 @@ targets:
|
|||||||
["devicelab", "android", "linux"]
|
["devicelab", "android", "linux"]
|
||||||
task_name: cubic_bezier_perf__e2e_summary
|
task_name: cubic_bezier_perf__e2e_summary
|
||||||
|
|
||||||
- name: Linux_android cubic_bezier_perf_sksl_warmup__e2e_summary
|
|
||||||
recipe: devicelab/devicelab_drone
|
|
||||||
presubmit: false
|
|
||||||
timeout: 60
|
|
||||||
properties:
|
|
||||||
tags: >
|
|
||||||
["devicelab", "android", "linux"]
|
|
||||||
task_name: cubic_bezier_perf_sksl_warmup__e2e_summary
|
|
||||||
|
|
||||||
- name: Linux_samsung_s10 cubic_bezier_perf__timeline_summary
|
- name: Linux_samsung_s10 cubic_bezier_perf__timeline_summary
|
||||||
recipe: devicelab/devicelab_drone
|
recipe: devicelab/devicelab_drone
|
||||||
presubmit: false
|
presubmit: false
|
||||||
@ -1967,24 +1958,6 @@ targets:
|
|||||||
["devicelab", "android", "linux"]
|
["devicelab", "android", "linux"]
|
||||||
task_name: flutter_gallery__transition_perf_with_semantics
|
task_name: flutter_gallery__transition_perf_with_semantics
|
||||||
|
|
||||||
- name: Linux_android flutter_gallery_sksl_warmup__transition_perf
|
|
||||||
recipe: devicelab/devicelab_drone
|
|
||||||
presubmit: false
|
|
||||||
timeout: 60
|
|
||||||
properties:
|
|
||||||
tags: >
|
|
||||||
["devicelab", "android", "linux"]
|
|
||||||
task_name: flutter_gallery_sksl_warmup__transition_perf
|
|
||||||
|
|
||||||
- name: Linux_android flutter_gallery_sksl_warmup__transition_perf_e2e
|
|
||||||
recipe: devicelab/devicelab_drone
|
|
||||||
presubmit: false
|
|
||||||
timeout: 60
|
|
||||||
properties:
|
|
||||||
tags: >
|
|
||||||
["devicelab", "android", "linux"]
|
|
||||||
task_name: flutter_gallery_sksl_warmup__transition_perf_e2e
|
|
||||||
|
|
||||||
- name: Linux_samsung_s10 new_gallery__transition_perf
|
- name: Linux_samsung_s10 new_gallery__transition_perf
|
||||||
recipe: devicelab/devicelab_drone
|
recipe: devicelab/devicelab_drone
|
||||||
presubmit: false
|
presubmit: false
|
||||||
@ -3094,15 +3067,6 @@ targets:
|
|||||||
["devicelab", "ios", "mac"]
|
["devicelab", "ios", "mac"]
|
||||||
task_name: complex_layout_scroll_perf_ios__timeline_summary
|
task_name: complex_layout_scroll_perf_ios__timeline_summary
|
||||||
|
|
||||||
- name: Mac_ios cubic_bezier_perf_ios_sksl_warmup__timeline_summary
|
|
||||||
recipe: devicelab/devicelab_drone
|
|
||||||
presubmit: false
|
|
||||||
timeout: 60
|
|
||||||
properties:
|
|
||||||
tags: >
|
|
||||||
["devicelab", "ios", "mac"]
|
|
||||||
task_name: cubic_bezier_perf_ios_sksl_warmup__timeline_summary
|
|
||||||
|
|
||||||
- name: Mac_ios external_ui_integration_test_ios
|
- name: Mac_ios external_ui_integration_test_ios
|
||||||
bringup: true # Flaky https://github.com/flutter/flutter/issues/106806
|
bringup: true # Flaky https://github.com/flutter/flutter/issues/106806
|
||||||
recipe: devicelab/devicelab_drone
|
recipe: devicelab/devicelab_drone
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
import 'package:flutter_devicelab/framework/devices.dart';
|
|
||||||
import 'package:flutter_devicelab/framework/framework.dart';
|
|
||||||
import 'package:flutter_devicelab/tasks/perf_tests.dart';
|
|
||||||
|
|
||||||
Future<void> main() async {
|
|
||||||
deviceOperatingSystem = DeviceOperatingSystem.ios;
|
|
||||||
await task(createCubicBezierPerfSkSLWarmupTest());
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
import 'dart:async';
|
|
||||||
|
|
||||||
import 'package:flutter_devicelab/framework/devices.dart';
|
|
||||||
import 'package:flutter_devicelab/framework/framework.dart';
|
|
||||||
import 'package:flutter_devicelab/tasks/perf_tests.dart';
|
|
||||||
|
|
||||||
Future<void> main() async {
|
|
||||||
deviceOperatingSystem = DeviceOperatingSystem.android;
|
|
||||||
await task(createCubicBezierPerfSkSlWarmupE2ETest());
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
import 'package:flutter_devicelab/framework/devices.dart';
|
|
||||||
import 'package:flutter_devicelab/framework/framework.dart';
|
|
||||||
import 'package:flutter_devicelab/tasks/perf_tests.dart';
|
|
||||||
|
|
||||||
Future<void> main() async {
|
|
||||||
deviceOperatingSystem = DeviceOperatingSystem.android;
|
|
||||||
await task(createCubicBezierPerfSkSLWarmupTest());
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
import 'package:flutter_devicelab/framework/devices.dart';
|
|
||||||
import 'package:flutter_devicelab/framework/framework.dart';
|
|
||||||
import 'package:flutter_devicelab/tasks/perf_tests.dart';
|
|
||||||
|
|
||||||
Future<void> main() async {
|
|
||||||
deviceOperatingSystem = DeviceOperatingSystem.android;
|
|
||||||
await task(createFlutterGalleryTransitionsPerfSkSLWarmupTest());
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
import 'package:flutter_devicelab/framework/devices.dart';
|
|
||||||
import 'package:flutter_devicelab/framework/framework.dart';
|
|
||||||
import 'package:flutter_devicelab/tasks/perf_tests.dart';
|
|
||||||
|
|
||||||
Future<void> main() async {
|
|
||||||
deviceOperatingSystem = DeviceOperatingSystem.android;
|
|
||||||
await task(createFlutterGalleryTransitionsPerfSkSLWarmupE2ETest());
|
|
||||||
}
|
|
@ -108,22 +108,6 @@ TaskFunction createCubicBezierPerfE2ETest() {
|
|||||||
).run;
|
).run;
|
||||||
}
|
}
|
||||||
|
|
||||||
TaskFunction createCubicBezierPerfSkSlWarmupE2ETest() {
|
|
||||||
return PerfTestWithSkSL.e2e(
|
|
||||||
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
|
|
||||||
'test/cubic_bezier_perf_e2e.dart',
|
|
||||||
).run;
|
|
||||||
}
|
|
||||||
|
|
||||||
TaskFunction createCubicBezierPerfSkSLWarmupTest() {
|
|
||||||
return PerfTestWithSkSL(
|
|
||||||
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
|
|
||||||
'test_driver/run_app.dart',
|
|
||||||
'cubic_bezier_perf',
|
|
||||||
testDriver: 'test_driver/cubic_bezier_perf_test.dart',
|
|
||||||
).run;
|
|
||||||
}
|
|
||||||
|
|
||||||
TaskFunction createFlutterGalleryTransitionsPerfSkSLWarmupTest() {
|
TaskFunction createFlutterGalleryTransitionsPerfSkSLWarmupTest() {
|
||||||
return PerfTestWithSkSL(
|
return PerfTestWithSkSL(
|
||||||
'${flutterDirectory.path}/dev/integration_tests/flutter_gallery',
|
'${flutterDirectory.path}/dev/integration_tests/flutter_gallery',
|
||||||
@ -132,14 +116,6 @@ TaskFunction createFlutterGalleryTransitionsPerfSkSLWarmupTest() {
|
|||||||
).run;
|
).run;
|
||||||
}
|
}
|
||||||
|
|
||||||
TaskFunction createFlutterGalleryTransitionsPerfSkSLWarmupE2ETest() {
|
|
||||||
return PerfTestWithSkSL.e2e(
|
|
||||||
'${flutterDirectory.path}/dev/integration_tests/flutter_gallery',
|
|
||||||
'test_driver/transitions_perf_e2e.dart',
|
|
||||||
testDriver: 'test_driver/transitions_perf_e2e_test.dart',
|
|
||||||
).run;
|
|
||||||
}
|
|
||||||
|
|
||||||
TaskFunction createBackdropFilterPerfTest({bool measureCpuGpu = true}) {
|
TaskFunction createBackdropFilterPerfTest({bool measureCpuGpu = true}) {
|
||||||
return PerfTest(
|
return PerfTest(
|
||||||
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
|
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user