-
Notifications
You must be signed in to change notification settings - Fork 5k
Enable SVE2 instruction set detection for ARM64 #115117
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
Conversation
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
@dotnet/jit-contrib @dotnet/arm64-contrib |
src/native/minipal/cpufeatures.c
Outdated
@@ -19,6 +19,10 @@ | |||
#define PF_ARM_SVE_INSTRUCTIONS_AVAILABLE (46) | |||
#endif | |||
|
|||
#ifndef PF_ARM_SVE2_INSTRUCTIONS_AVAILABLE | |||
#define PF_ARM_SVE2_INSTRUCTIONS_AVAILABLE (47) // ref SDK 10.0.26100.0 |
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.
any reason to keep this comment around?
@snickolls-arm - seems there is merge conflict in |
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
Initial patch for enablement of SVE2 APIs. Allows the CLR to detect the SVE2 feature and adds an
InstructionSet
to the JIT.