We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
As per #114818 (comment), BitArray.CopyTo could benefit from using the cross platform intrinsic APIs rather than the platform specific ones.
BitArray.CopyTo
This can be achieved by swapping out these API calls:
Avx512BW.IsSupported
Vector512.IsHardwareAccelerated
Avx512BW.Shuffle(x, y)
Vector512.Shuffle(x, y)
Avx512F.And(x, y)
x & y
Avx512BW.Min(x, y)
Vector512.Min(x, y)
Avx512F.Store(x, y)
y.Store(x)
Similar changes could also be made to the Avx2 path (using Vector256) and so on.
Avx2
Vector256
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @dotnet/area-system-collections See info in area-owners.md if you want to be subscribed.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As per #114818 (comment),
BitArray.CopyTo
could benefit from using the cross platform intrinsic APIs rather than the platform specific ones.This can be achieved by swapping out these API calls:
Avx512BW.IsSupported
->Vector512.IsHardwareAccelerated
Avx512BW.Shuffle(x, y)
->Vector512.Shuffle(x, y)
Avx512F.And(x, y)
->x & y
Avx512BW.Min(x, y)
->Vector512.Min(x, y)
Avx512F.Store(x, y)
->y.Store(x)
Similar changes could also be made to the
Avx2
path (usingVector256
) and so on.The text was updated successfully, but these errors were encountered: