Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge pull request #11335 from t895/baseline-profile
Android: Baseline profile generation
- Loading branch information
Showing
10 changed files
with
4,085 additions
and
1 deletion.
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
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
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,73 @@ | ||
| import com.android.build.api.dsl.ManagedVirtualDevice | ||
|
|
||
| plugins { | ||
| id 'com.android.test' | ||
| id 'org.jetbrains.kotlin.android' | ||
| } | ||
|
|
||
| android { | ||
| namespace 'com.dolphin.benchmark' | ||
| compileSdk 33 | ||
|
|
||
| compileOptions { | ||
| sourceCompatibility = JavaVersion.VERSION_1_8 | ||
| targetCompatibility = JavaVersion.VERSION_1_8 | ||
| } | ||
|
|
||
| kotlinOptions { | ||
| jvmTarget = "1.8" | ||
| } | ||
|
|
||
| defaultConfig { | ||
| minSdk 23 | ||
| targetSdk 33 | ||
|
|
||
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
| } | ||
|
|
||
| testOptions { | ||
| managedDevices { | ||
| devices { | ||
| pixel2Api31 (ManagedVirtualDevice) { | ||
| device = "Pixel 2" | ||
| apiLevel = 31 | ||
| systemImageSource = "aosp" | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| buildTypes { | ||
| // This benchmark buildType is used for benchmarking, and should function like your | ||
| // release build (for example, with minification on). It's signed with a debug key | ||
| // for easy local/CI testing. | ||
| benchmark { | ||
| signingConfig signingConfigs.debug | ||
| matchingFallbacks = ['release'] | ||
| debuggable true | ||
| applicationIdSuffix ".benchmark" | ||
| versionNameSuffix '-benchmark' | ||
| proguardFiles getDefaultProguardFile( | ||
| 'proguard-android-optimize.txt'), | ||
| 'proguard-rules.pro' | ||
| minifyEnabled true | ||
| shrinkResources true | ||
| } | ||
| } | ||
|
|
||
| targetProjectPath = ":app" | ||
| experimentalProperties["android.experimental.self-instrumenting"] = true | ||
| } | ||
|
|
||
| dependencies { | ||
| implementation 'androidx.test.ext:junit:1.1.4' | ||
| implementation 'androidx.test.espresso:espresso-core:3.5.0' | ||
| implementation 'androidx.test.uiautomator:uiautomator:2.2.0' | ||
| implementation 'androidx.benchmark:benchmark-macro-junit4:1.1.1' | ||
| } | ||
|
|
||
| androidComponents { | ||
| beforeVariants(selector().all()) { | ||
| enabled = buildType == "benchmark" | ||
| } | ||
| } |
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 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <queries> | ||
| <package android:name="org.dolphinemu.dolphinemu.debug" /> | ||
| </queries> | ||
| </manifest> |
43 changes: 43 additions & 0 deletions
43
Source/Android/benchmark/src/main/java/com/dolphin/benchmark/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,43 @@ | ||
| package com.dolphin.benchmark | ||
|
|
||
| import androidx.benchmark.macro.ExperimentalBaselineProfilesApi | ||
| import androidx.benchmark.macro.junit4.BaselineProfileRule | ||
| import androidx.test.internal.runner.junit4.AndroidJUnit4ClassRunner | ||
| import androidx.test.uiautomator.UiSelector | ||
| import org.junit.Rule | ||
| import org.junit.Test | ||
| import org.junit.runner.RunWith | ||
|
|
||
| @OptIn(ExperimentalBaselineProfilesApi::class) | ||
| @RunWith(AndroidJUnit4ClassRunner::class) | ||
| class BaselineProfileGenerator { | ||
|
|
||
| @get:Rule | ||
| val rule = BaselineProfileRule() | ||
|
|
||
| @Test | ||
| fun generate() = rule.collectBaselineProfile( | ||
| packageName = "org.dolphinemu.dolphinemu.benchmark", | ||
| profileBlock = { | ||
| pressHome() | ||
| startActivityAndWait() | ||
|
|
||
| // Dismiss analytics dialog due to issue with finding button | ||
| device.pressBack() | ||
|
|
||
| // Navigate through activities that don't require games | ||
| // TODO: Make all activities testable without having games available | ||
| // TODO: Use resource strings to support more languages | ||
|
|
||
| // Navigate to the Settings Activity | ||
| val settings = device.findObject(UiSelector().description("Settings")) | ||
| settings.clickAndWaitForNewWindow(30_000) | ||
|
|
||
| // Go through settings and to the User Data Activity | ||
| val config = device.findObject(UiSelector().textContains("Config")) | ||
| config.click() | ||
| val userData = device.findObject(UiSelector().textContains("User Data")) | ||
| userData.clickAndWaitForNewWindow(30_000) | ||
| }, | ||
| ) | ||
| } |
40 changes: 40 additions & 0 deletions
40
Source/Android/benchmark/src/main/java/com/dolphin/benchmark/StartupBenchmark.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,40 @@ | ||
| package com.dolphin.benchmark | ||
|
|
||
| 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 org.junit.Rule | ||
| import org.junit.Test | ||
| import org.junit.runner.RunWith | ||
|
|
||
| @RunWith(AndroidJUnit4::class) | ||
| class StartupBenchmark { | ||
| @get:Rule | ||
| val benchmarkRule = MacrobenchmarkRule() | ||
|
|
||
| @Test | ||
| fun startupBaselineProfileDisabled() = startup( | ||
| CompilationMode.Partial(baselineProfileMode = BaselineProfileMode.Disable, warmupIterations = 1) | ||
| ) | ||
|
|
||
| @Test | ||
| fun startupBaselineProfile() = startup( | ||
| CompilationMode.Partial(baselineProfileMode = BaselineProfileMode.Require, warmupIterations = 1) | ||
| ) | ||
|
|
||
| private fun startup(compilationMode: CompilationMode) = benchmarkRule.measureRepeated( | ||
| packageName = "org.dolphinemu.dolphinemu.benchmark", | ||
| metrics = listOf(StartupTimingMetric()), | ||
| iterations = 10, | ||
| compilationMode = compilationMode, | ||
| startupMode = StartupMode.COLD, | ||
| setupBlock = { | ||
| pressHome() | ||
| } | ||
| ) { | ||
| startActivityAndWait() | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| include ':app' | ||
| include ':benchmark' |