Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
19191675
Unverified
Commit
19191675
authored
Jul 20, 2022
by
ColdPaleLight
Committed by
GitHub
Jul 20, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added benchmark for early removal of unused raster cache entris mecha… (#107918)
parent
199cb2f5
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
110 additions
and
0 deletions
+110
-0
.ci.yaml
.ci.yaml
+10
-0
TESTOWNERS
TESTOWNERS
+1
-0
common.dart
dev/benchmarks/macrobenchmarks/lib/common.dart
+1
-0
main.dart
dev/benchmarks/macrobenchmarks/lib/main.dart
+9
-0
color_filter_with_unstable_child.dart
...obenchmarks/lib/src/color_filter_with_unstable_child.dart
+54
-0
color_filter_with_unstable_child_perf_e2e.dart
...marks/test/color_filter_with_unstable_child_perf_e2e.dart
+16
-0
color_filter_with_unstable_child_perf__e2e_summary.dart
...s/color_filter_with_unstable_child_perf__e2e_summary.dart
+12
-0
perf_tests.dart
dev/devicelab/lib/tasks/perf_tests.dart
+7
-0
No files found.
.ci.yaml
View file @
19191675
...
@@ -1364,6 +1364,16 @@ targets:
...
@@ -1364,6 +1364,16 @@ targets:
["devicelab", "android", "linux"]
["devicelab", "android", "linux"]
task_name
:
color_filter_cache_perf__e2e_summary
task_name
:
color_filter_cache_perf__e2e_summary
-
name
:
Linux_android color_filter_with_unstable_child_perf__e2e_summary
recipe
:
devicelab/devicelab_drone
presubmit
:
false
bringup
:
true
timeout
:
60
properties
:
tags
:
>
["devicelab","android","linux"]
task_name
:
color_filter_with_unstable_child_perf__e2e_summary
-
name
:
Linux_android raster_cache_use_memory_perf__e2e_summary
-
name
:
Linux_android raster_cache_use_memory_perf__e2e_summary
recipe
:
devicelab/devicelab_drone
recipe
:
devicelab/devicelab_drone
presubmit
:
false
presubmit
:
false
...
...
TESTOWNERS
View file @
19191675
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
/dev/devicelab/bin/tasks/codegen_integration.dart @zanderso @flutter/tool
/dev/devicelab/bin/tasks/codegen_integration.dart @zanderso @flutter/tool
/dev/devicelab/bin/tasks/clipper_cache_perf__e2e_summary.dart @flar @flutter/engine
/dev/devicelab/bin/tasks/clipper_cache_perf__e2e_summary.dart @flar @flutter/engine
/dev/devicelab/bin/tasks/color_filter_and_fade_perf__e2e_summary.dart @zanderso @flutter/engine
/dev/devicelab/bin/tasks/color_filter_and_fade_perf__e2e_summary.dart @zanderso @flutter/engine
/dev/devicelab/bin/tasks/color_filter_with_unstable_child_perf__e2e_summary.dart @flar @flutter/engine
/dev/devicelab/bin/tasks/shader_mask_cache_perf__e2e_summary.dart @flar @flutter/engine
/dev/devicelab/bin/tasks/shader_mask_cache_perf__e2e_summary.dart @flar @flutter/engine
/dev/devicelab/bin/tasks/color_filter_cache_perf__e2e_summary.dart @flar @flutter/engine
/dev/devicelab/bin/tasks/color_filter_cache_perf__e2e_summary.dart @flar @flutter/engine
/dev/devicelab/bin/tasks/complex_layout_android__compile.dart @zanderso @flutter/tool
/dev/devicelab/bin/tasks/complex_layout_android__compile.dart @zanderso @flutter/tool
...
...
dev/benchmarks/macrobenchmarks/lib/common.dart
View file @
19191675
...
@@ -17,6 +17,7 @@ const String kAnimatedPlaceholderRouteName = '/animated_placeholder';
...
@@ -17,6 +17,7 @@ const String kAnimatedPlaceholderRouteName = '/animated_placeholder';
const
String
kClipperCacheRouteName
=
'/clipper_cache'
;
const
String
kClipperCacheRouteName
=
'/clipper_cache'
;
const
String
kColorFilterAndFadeRouteName
=
'/color_filter_and_fade'
;
const
String
kColorFilterAndFadeRouteName
=
'/color_filter_and_fade'
;
const
String
kColorFilterCacheRouteName
=
'/color_filter_cache'
;
const
String
kColorFilterCacheRouteName
=
'/color_filter_cache'
;
const
String
kColorFilterWithUnstableChildName
=
'/color_filter_with_unstable_child'
;
const
String
kFadingChildAnimationRouteName
=
'/fading_child_animation'
;
const
String
kFadingChildAnimationRouteName
=
'/fading_child_animation'
;
const
String
kImageFilteredTransformAnimationRouteName
=
'/imagefiltered_transform_animation'
;
const
String
kImageFilteredTransformAnimationRouteName
=
'/imagefiltered_transform_animation'
;
const
String
kMultiWidgetConstructionRouteName
=
'/multi_widget_construction'
;
const
String
kMultiWidgetConstructionRouteName
=
'/multi_widget_construction'
;
...
...
dev/benchmarks/macrobenchmarks/lib/main.dart
View file @
19191675
...
@@ -14,6 +14,7 @@ import 'src/backdrop_filter.dart';
...
@@ -14,6 +14,7 @@ import 'src/backdrop_filter.dart';
import
'src/clipper_cache.dart'
;
import
'src/clipper_cache.dart'
;
import
'src/color_filter_and_fade.dart'
;
import
'src/color_filter_and_fade.dart'
;
import
'src/color_filter_cache.dart'
;
import
'src/color_filter_cache.dart'
;
import
'src/color_filter_with_unstable_child.dart'
;
import
'src/cubic_bezier.dart'
;
import
'src/cubic_bezier.dart'
;
import
'src/cull_opacity.dart'
;
import
'src/cull_opacity.dart'
;
import
'src/filtered_child_animation.dart'
;
import
'src/filtered_child_animation.dart'
;
...
@@ -64,6 +65,7 @@ class MacrobenchmarksApp extends StatelessWidget {
...
@@ -64,6 +65,7 @@ class MacrobenchmarksApp extends StatelessWidget {
kClipperCacheRouteName:
(
BuildContext
context
)
=>
const
ClipperCachePage
(),
kClipperCacheRouteName:
(
BuildContext
context
)
=>
const
ClipperCachePage
(),
kColorFilterAndFadeRouteName:
(
BuildContext
context
)
=>
const
ColorFilterAndFadePage
(),
kColorFilterAndFadeRouteName:
(
BuildContext
context
)
=>
const
ColorFilterAndFadePage
(),
kColorFilterCacheRouteName:
(
BuildContext
context
)
=>
const
ColorFilterCachePage
(),
kColorFilterCacheRouteName:
(
BuildContext
context
)
=>
const
ColorFilterCachePage
(),
kColorFilterWithUnstableChildName:
(
BuildContext
context
)
=>
const
ColorFilterWithUnstableChildPage
(),
kFadingChildAnimationRouteName:
(
BuildContext
context
)
=>
const
FilteredChildAnimationPage
(
FilterType
.
opacity
),
kFadingChildAnimationRouteName:
(
BuildContext
context
)
=>
const
FilteredChildAnimationPage
(
FilterType
.
opacity
),
kImageFilteredTransformAnimationRouteName:
(
BuildContext
context
)
=>
const
FilteredChildAnimationPage
(
FilterType
.
rotateFilter
),
kImageFilteredTransformAnimationRouteName:
(
BuildContext
context
)
=>
const
FilteredChildAnimationPage
(
FilterType
.
rotateFilter
),
kMultiWidgetConstructionRouteName:
(
BuildContext
context
)
=>
const
MultiWidgetConstructTable
(
10
,
20
),
kMultiWidgetConstructionRouteName:
(
BuildContext
context
)
=>
const
MultiWidgetConstructTable
(
10
,
20
),
...
@@ -195,6 +197,13 @@ class HomePage extends StatelessWidget {
...
@@ -195,6 +197,13 @@ class HomePage extends StatelessWidget {
Navigator
.
pushNamed
(
context
,
kColorFilterCacheRouteName
);
Navigator
.
pushNamed
(
context
,
kColorFilterCacheRouteName
);
},
},
),
),
ElevatedButton
(
key:
const
Key
(
kColorFilterWithUnstableChildName
),
child:
const
Text
(
'Color Filter with Ustable Child'
),
onPressed:
()
{
Navigator
.
pushNamed
(
context
,
kColorFilterWithUnstableChildName
);
},
),
ElevatedButton
(
ElevatedButton
(
key:
const
Key
(
kRasterCacheUseMemory
),
key:
const
Key
(
kRasterCacheUseMemory
),
child:
const
Text
(
'RasterCache Use Memory'
),
child:
const
Text
(
'RasterCache Use Memory'
),
...
...
dev/benchmarks/macrobenchmarks/lib/src/color_filter_with_unstable_child.dart
0 → 100644
View file @
19191675
// 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/material.dart'
;
class
ColorFilterWithUnstableChildPage
extends
StatefulWidget
{
const
ColorFilterWithUnstableChildPage
({
super
.
key
});
@override
State
<
StatefulWidget
>
createState
()
=>
_ColorFilterWithUnstableChildPageState
();
}
class
_ColorFilterWithUnstableChildPageState
extends
State
<
ColorFilterWithUnstableChildPage
>
with
SingleTickerProviderStateMixin
{
late
Animation
<
double
>
_offsetY
;
late
AnimationController
_controller
;
@override
void
initState
()
{
super
.
initState
();
_controller
=
AnimationController
(
vsync:
this
,
duration:
const
Duration
(
seconds:
2
));
_offsetY
=
Tween
<
double
>(
begin:
0
,
end:
-
1000.0
).
animate
(
_controller
);
_controller
.
repeat
();
}
@override
void
dispose
()
{
_controller
.
dispose
();
super
.
dispose
();
}
@override
Widget
build
(
BuildContext
context
)
{
return
AnimatedBuilder
(
animation:
_offsetY
,
builder:
(
BuildContext
context
,
Widget
?
child
)
{
return
Stack
(
children:
List
<
Widget
>.
generate
(
50
,
(
int
i
)
=>
Positioned
(
left:
0
,
top:
(
200
*
i
).
toDouble
()
+
_offsetY
.
value
,
child:
ColorFiltered
(
colorFilter:
ColorFilter
.
mode
(
Colors
.
green
[
300
]!,
BlendMode
.
luminosity
),
child:
RepaintBoundary
(
child:
Container
(
// Slightly change width to invalidate raster cache.
width:
1000
-
(
_offsetY
.
value
/
100
),
height:
100
,
color:
Colors
.
red
,
),
),
),
)));
}
);
}
}
dev/benchmarks/macrobenchmarks/test/color_filter_with_unstable_child_perf_e2e.dart
0 → 100644
View file @
19191675
// 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:macrobenchmarks/common.dart'
;
import
'util.dart'
;
Future
<
void
>
main
()
async
{
macroPerfTestE2E
(
'color_filter_with_unstable_child_perf'
,
kColorFilterWithUnstableChildName
,
pageDelay:
const
Duration
(
seconds:
1
),
duration:
const
Duration
(
seconds:
10
),
);
}
dev/devicelab/bin/tasks/color_filter_with_unstable_child_perf__e2e_summary.dart
0 → 100644
View file @
19191675
// 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
(
createColorFilterWithUnstableChildPerfE2ETest
());
}
dev/devicelab/lib/tasks/perf_tests.dart
View file @
19191675
...
@@ -384,6 +384,13 @@ TaskFunction createColorFilterCachePerfE2ETest() {
...
@@ -384,6 +384,13 @@ TaskFunction createColorFilterCachePerfE2ETest() {
).
run
;
).
run
;
}
}
TaskFunction
createColorFilterWithUnstableChildPerfE2ETest
(
)
{
return
PerfTest
.
e2e
(
'
${flutterDirectory.path}
/dev/benchmarks/macrobenchmarks'
,
'test/color_filter_with_unstable_child_perf_e2e.dart'
,
).
run
;
}
TaskFunction
createRasterCacheUseMemoryPerfE2ETest
(
)
{
TaskFunction
createRasterCacheUseMemoryPerfE2ETest
(
)
{
return
PerfTest
.
e2e
(
return
PerfTest
.
e2e
(
'
${flutterDirectory.path}
/dev/benchmarks/macrobenchmarks'
,
'
${flutterDirectory.path}
/dev/benchmarks/macrobenchmarks'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment