We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Processing dotnet/runtime#109036 (comment) command:
-arm64 --envvars DOTNET_JitDisasm:Bestcase
using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Running; public class Bench { string s = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/"; [Benchmark] public bool Bestcase() => s.StartsWith("https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10", StringComparison.Ordinal); [Benchmark] public bool Bestcase_IgnoreCase() => s.StartsWith("https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10", StringComparison.OrdinalIgnoreCase); // Worst case: differs at 1st char: [Benchmark] public bool Worstcase() => s.StartsWith("xttps://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10", StringComparison.Ordinal); [Benchmark] public bool Worstcase_IgnoreCase() => s.StartsWith("xttps://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10", StringComparison.OrdinalIgnoreCase); }
(EgorBot will reply in this issue)
The text was updated successfully, but these errors were encountered:
Arm64
BenchmarkDotNet v0.14.0, Ubuntu 24.04 LTS (Noble Numbat) Arm64 Job-NOPWKW : .NET 10.0.0 (42.42.42.42424), Arm64 RyuJIT AdvSIMD Job-CAQCQB : .NET 10.0.0 (42.42.42.42424), Arm64 RyuJIT AdvSIMD EnvironmentVariables=DOTNET_JitDisasm=Bestcase
BDN_Artifacts.zip
Sorry, something went wrong.
cc @EgorBo (logs)
No branches or pull requests
Processing dotnet/runtime#109036 (comment) command:
Command
-arm64 --envvars DOTNET_JitDisasm:Bestcase
(EgorBot will reply in this issue)
The text was updated successfully, but these errors were encountered: