-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[release/9.0-staging] Ensure Vector.Create is properly recognized as intrinsic #109322
[release/9.0-staging] Ensure Vector.Create is properly recognized as intrinsic #109322
Conversation
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
CC. @dotnet/jit-contrib, @BruceForstall for review @JulieLeeMSFT this should be considered for backport since its a perf regression in one of the intrinsic APIs, which are expected to be accelerated, and a user reported the initial regression |
CC. @JulieLeeMSFT, I think this is just pending management approval for backport now. |
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. we will take for consideration in 9.0.x
Approved by tactics over e-mail |
Backport of #108945 to release/9.0-staging
/cc @tannergooding
Customer Impact
#108929
Customers using
System.Numerics.Vector<T>
may see unexpected perf slowdowns on .NET 9 due to thenew Vector(T scalar)
APIs no longer being recognized as[Intrinsic]
and therefore not being accelerated by the JIT.Regression
Vector<T>
is one of the original hardware accelerated types introduced in 2014 for .NET Framework. There have been multiple iterations over the past several releases modernizing the JIT implementation to bring it inline with the newer types exposed by theSystem.Runtime.Intrinsics
namespace.The regression was introduced in .NET 9 as part of one of the larger refactorings done for the
System.Numerics.Vector<T>
types when theVector.Create<T>(T scalar)
APIs were added for parity and the existing constructors were meant to defer to these APIs.Testing
JIT disassembly was checked to ensure it was generated the expected output.
Risk
Low. This is a lowlevel performance oriented API. The regression is one of performance and not of correctness.
The fix is simply ensuring the existing logic is correctly hooked up to the new APIs as was intended.