-
Notifications
You must be signed in to change notification settings - Fork 772
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
Add additional ThreadStatic storage to avoid allocation while sorting… #2865
Add additional ThreadStatic storage to avoid allocation while sorting… #2865
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2865 +/- ##
=======================================
Coverage 85.16% 85.16%
=======================================
Files 259 259
Lines 9330 9345 +15
=======================================
+ Hits 7946 7959 +13
- Misses 1384 1386 +2
|
This PR was marked stale due to lack of activity and will be closed in 7 days. Commenting or Pushing will instruct the bot to automatically remove the label. This bot runs once per day. |
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.
LGTM
This PR was marked stale due to lack of activity and will be closed in 7 days. Commenting or Pushing will instruct the bot to automatically remove the label. This bot runs once per day. |
Closed as inactive. Feel free to reopen if this PR is still being worked on. |
Fixes #2838
Changes
Benchmark Results:
The benchmarks numbers are comparable to
main
branch. This is expected since the benchmark methods do not change the order of the tag Keys.// * Summary *
BenchmarkDotNet=v0.13.1, OS=Windows 10.0.22000
Intel Core i7-9700 CPU 3.00GHz, 1 CPU, 8 logical and 8 physical cores
.NET SDK=6.0.101
[Host] : .NET 6.0.1 (6.0.121.56705), X64 RyuJIT
DefaultJob : .NET 6.0.1 (6.0.121.56705), X64 RyuJIT
main branch
With the new changes