Merged
Conversation
* PackageVersion=10.0.0-preview1 * Binaries from: https://github.com/jonathanpeppers/runtime/tree/libmono-profiler-aot.so-net10p5 Build commands for dotnet/runtime are: ./build.sh mono -c Release -a arm -os android ./build.sh mono -c Release -a arm64 -os android ./build.sh mono -c Release -a x86 -os android ./build.sh mono -c Release -a x64 -os android With the changes to `CMakeLists.txt`: if(HOST_ANDROID) add_library(mono-profiler-aot SHARED aot.c helper.c) target_compile_definitions(mono-profiler-aot PRIVATE -DMONO_DLL_EXPORT) target_link_libraries(mono-profiler-aot PRIVATE monosgen-shared monoapi eglib_objects log) set_target_properties(mono-profiler-aot PROPERTIES OUTPUT_NAME mono-profiler-aot) install(TARGETS mono-profiler-aot LIBRARY) endif()
Owner
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
jonathanpeppers
added a commit
to dotnet/maui
that referenced
this pull request
May 21, 2025
Context: jonathanpeppers/Mono.Profiler.Android#23 This is an initial Mono AOT profile for .NET 10. I had to build a .NET 10 version of `libmono-profiler-aot.so` and release a 10.0.0-preview1 `Mono.AotProfiler.Android` NuGet package. Others will be able to update these more easily in the future. An average of 10 runs on a Pixel 7 of `dotnet new maui`: Before: Average(ms): 486.4 Std Err(ms): 5.12770253947451 Std Dev(ms): 16.2152191885689 After: Average(ms): 462.2 Std Err(ms): 3.69022733415948 Std Dev(ms): 11.6695234597552 This is reasonable compared to the numbers I recently got for .NET 9: * 6fc44fb
jonathanpeppers
added a commit
to dotnet/maui
that referenced
this pull request
May 21, 2025
Context: jonathanpeppers/Mono.Profiler.Android#23 This is an initial Mono AOT profile for .NET 10. I had to build a .NET 10 version of `libmono-profiler-aot.so` and release a 10.0.0-preview1 `Mono.AotProfiler.Android` NuGet package. Others will be able to update these more easily in the future. An average of 10 runs on a Pixel 7 of `dotnet new maui`: Before: Average(ms): 486.4 Std Err(ms): 5.12770253947451 Std Dev(ms): 16.2152191885689 After: Average(ms): 462.2 Std Err(ms): 3.69022733415948 Std Dev(ms): 11.6695234597552 This is reasonable compared to the numbers I recently got for .NET 9: * 6fc44fb
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
https://github.com/jonathanpeppers/runtime/tree/libmono-profiler-aot.so-net10p5
Build commands for dotnet/runtime are:
With the changes to
CMakeLists.txt: