-
-
Notifications
You must be signed in to change notification settings - Fork 886
Added and used Numerics.Vector{128|256}Count extension #2422
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
| if (intrinsic.Key != HwIntrinsics.AllowAll) | ||
| { | ||
| processStartInfo.Environment[$"COMPlus_{intrinsic.Value}"] = "0"; | ||
| processStartInfo.Environment[$"DOTNET_{intrinsic.Value}"] = "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.
COMPlus prefix changed with .NET 6 to be DOTNET.
The COMPlus is still supported, but may get obsolete in future versions.
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.
Thanks for that. One of those things we'd have only found out once all our tests break.
JimBobSquarePants
left a comment
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.
I love these kinds of changes. So much better! I'm assuming you want it merged before #2419 ?
|
Yes please merge before the other. |
Prerequisites
Description
Instead of typing
everytime, there's now a helper that shortens this to
Cf. #2419 (comment)