-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature/#719] Add Benchmark Module and baseline profile generator #1011
Open
l2hyunwoo
wants to merge
2
commits into
DroidKaigi:main
Choose a base branch
from
l2hyunwoo:feature/#719
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25,891 changes: 25,891 additions & 0 deletions
25,891
app-android/src/devRelease/generated/baselineProfiles/baseline-prof.txt
Large diffs are not rendered by default.
Oops, something went wrong.
20,425 changes: 20,425 additions & 0 deletions
20,425
app-android/src/prodRelease/generated/baselineProfiles/baseline-prof.txt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import com.android.build.api.dsl.ManagedVirtualDevice | ||
|
||
plugins { | ||
alias(libs.plugins.androidTest) | ||
alias(libs.plugins.kotlinGradlePlugin) | ||
alias(libs.plugins.androidx.baselineprofile) | ||
} | ||
|
||
android { | ||
namespace = "io.github.droidkaigi.confsched2023.baselineprofile" | ||
compileSdk = 34 | ||
|
||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
|
||
kotlinOptions { | ||
jvmTarget = "17" | ||
} | ||
|
||
defaultConfig { | ||
minSdk = 28 | ||
targetSdk = 34 | ||
|
||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
testInstrumentationRunnerArguments["androidx.benchmark.suppressErrors"] = "EMULATOR" | ||
} | ||
|
||
targetProjectPath = ":app-android" | ||
|
||
flavorDimensions += listOf("network") | ||
productFlavors { | ||
create("dev") { | ||
dimension = "network" | ||
buildConfigField( | ||
"String", | ||
"APP_FLAVOR_SUFFIX", | ||
"\".dev\"" | ||
) | ||
} | ||
create("prod") { | ||
dimension = "network" | ||
buildConfigField( | ||
"String", | ||
"APP_FLAVOR_SUFFIX", | ||
"\"\"" | ||
) | ||
} | ||
} | ||
|
||
testOptions.managedDevices.devices { | ||
create<ManagedVirtualDevice>("pixel6Api34") { | ||
device = "Pixel 6" | ||
apiLevel = 34 | ||
systemImageSource = "google" | ||
} | ||
} | ||
|
||
buildFeatures { | ||
buildConfig = true | ||
} | ||
} | ||
|
||
// This is the configuration block for the Baseline Profile plugin. | ||
// You can specify to run the generators on a managed devices or connected devices. | ||
baselineProfile { | ||
managedDevices += "pixel6Api34" | ||
useConnectedDevices = false | ||
} | ||
|
||
dependencies { | ||
implementation(libs.androidxTestExtJunit) | ||
implementation(libs.androidxTestEspressoEspressoCore) | ||
implementation(libs.uiautomator) | ||
implementation(libs.benchmark.macro.junit4) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<queries> | ||
<package android:name="io.github.droidkaigi.confsched2023" /> | ||
</queries> | ||
</manifest> |
6 changes: 6 additions & 0 deletions
6
...ineprofile/src/main/java/io/github/droidkaigi/confsched2023/baselineprofile/AppStrings.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package io.github.droidkaigi.confsched2023.baselineprofile | ||
|
||
val PACKAGE_NAME = buildString { | ||
append("io.github.droidkaigi.confsched2023") | ||
append(BuildConfig.APP_FLAVOR_SUFFIX) | ||
} |
57 changes: 57 additions & 0 deletions
57
.../main/java/io/github/droidkaigi/confsched2023/baselineprofile/BaselineProfileGenerator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
package io.github.droidkaigi.confsched2023.baselineprofile | ||
|
||
import androidx.benchmark.macro.junit4.BaselineProfileRule | ||
import androidx.test.ext.junit.runners.AndroidJUnit4 | ||
import androidx.test.filters.LargeTest | ||
import org.junit.Rule | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
|
||
/** | ||
* This test class generates a basic startup baseline profile for the target package. | ||
* | ||
* We recommend you start with this but add important user flows to the profile to improve their performance. | ||
* Refer to the [baseline profile documentation](https://d.android.com/topic/performance/baselineprofiles) | ||
* for more information. | ||
* | ||
* You can run the generator with the Generate Baseline Profile run configuration, | ||
* or directly with `generateBaselineProfile` Gradle task: | ||
* ``` | ||
* ./gradlew :app-android:generateReleaseBaselineProfile -Pandroid.testInstrumentationRunnerArguments.androidx.benchmark.enabledRules=BaselineProfile | ||
* ``` | ||
* The run configuration runs the Gradle task and applies filtering to run only the generators. | ||
* | ||
* Check [documentation](https://d.android.com/topic/performance/benchmarking/macrobenchmark-instrumentation-args) | ||
* for more information about available instrumentation arguments. | ||
* | ||
* After you run the generator, you can verify the improvements running the [StartupBenchmarks] benchmark. | ||
**/ | ||
@RunWith(AndroidJUnit4::class) | ||
@LargeTest | ||
class BaselineProfileGenerator { | ||
|
||
@get:Rule | ||
val rule = BaselineProfileRule() | ||
|
||
@Test | ||
fun generate() { | ||
rule.collect(PACKAGE_NAME) { | ||
// This block defines the app's critical user journey. Here we are interested in | ||
// optimizing for app startup. But you can also navigate and scroll | ||
// through your most important UI. | ||
|
||
// Start default activity for your app | ||
pressHome() | ||
startActivityAndWait() | ||
|
||
// TODO Write more interactions to optimize advanced journeys of your app. | ||
// For example: | ||
// 1. Wait until the content is asynchronously loaded | ||
// 2. Scroll the feed content | ||
// 3. Navigate to detail screen | ||
|
||
// Check UiAutomator documentation for more information how to interact with the app. | ||
// https://d.android.com/training/testing/other-components/ui-automator | ||
} | ||
} | ||
} |
72 changes: 72 additions & 0 deletions
72
...ile/src/main/java/io/github/droidkaigi/confsched2023/baselineprofile/StartupBenchmarks.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
package io.github.droidkaigi.confsched2023.baselineprofile | ||
|
||
import androidx.benchmark.macro.BaselineProfileMode | ||
import androidx.benchmark.macro.CompilationMode | ||
import androidx.benchmark.macro.StartupMode | ||
import androidx.benchmark.macro.StartupTimingMetric | ||
import androidx.benchmark.macro.junit4.MacrobenchmarkRule | ||
import androidx.test.ext.junit.runners.AndroidJUnit4 | ||
import androidx.test.filters.LargeTest | ||
import org.junit.Rule | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
|
||
/** | ||
* This test class benchmarks the speed of app startup. | ||
* Run this benchmark to verify how effective a Baseline Profile is. | ||
* It does this by comparing [CompilationMode.None], which represents the app with no Baseline | ||
* Profiles optimizations, and [CompilationMode.Partial], which uses Baseline Profiles. | ||
* | ||
* Run this benchmark to see startup measurements and captured system traces for verifying | ||
* the effectiveness of your Baseline Profiles. You can run it directly from Android | ||
* Studio as an instrumentation test, or run all benchmarks with this Gradle task: | ||
* ``` | ||
* ./gradlew :baselineprofile:connectedAndroidTest -Pandroid.testInstrumentationRunnerArguments.androidx.benchmark.enabledRules=Macrobenchmark | ||
* ``` | ||
* | ||
* You should run the benchmarks on a physical device, not an Android emulator, because the | ||
* emulator doesn't represent real world performance and shares system resources with its host. | ||
* | ||
* For more information, see the [Macrobenchmark documentation](https://d.android.com/macrobenchmark#create-macrobenchmark) | ||
* and the [instrumentation arguments documentation](https://d.android.com/topic/performance/benchmarking/macrobenchmark-instrumentation-args). | ||
**/ | ||
@RunWith(AndroidJUnit4::class) | ||
@LargeTest | ||
class StartupBenchmarks { | ||
|
||
@get:Rule | ||
val rule = MacrobenchmarkRule() | ||
|
||
@Test | ||
fun startupCompilationNone() = | ||
benchmark(CompilationMode.None()) | ||
|
||
@Test | ||
fun startupCompilationBaselineProfiles() = | ||
benchmark(CompilationMode.Partial(BaselineProfileMode.Require)) | ||
|
||
private fun benchmark(compilationMode: CompilationMode) { | ||
rule.measureRepeated( | ||
packageName = PACKAGE_NAME, | ||
metrics = listOf(StartupTimingMetric()), | ||
compilationMode = compilationMode, | ||
startupMode = StartupMode.COLD, | ||
iterations = 10, | ||
setupBlock = { | ||
pressHome() | ||
}, | ||
measureBlock = { | ||
startActivityAndWait() | ||
|
||
// TODO Add interactions to wait for when your app is fully drawn. | ||
// The app is fully drawn when Activity.reportFullyDrawn is called. | ||
// For Jetpack Compose, you can use ReportDrawn, ReportDrawnWhen and ReportDrawnAfter | ||
// from the AndroidX Activity library. | ||
|
||
// Check the UiAutomator documentation for more information on how to | ||
// interact with the app. | ||
// https://d.android.com/training/testing/other-components/ui-automator | ||
} | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I'm going to create this by myself without committing so could you remove this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's deleted