Replies: 1 comment
-
Hm, In this library I try to avoid utility methods at all. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Not all hardware support Span512.
We can check this by Vector512.IsHardwareAccelerated.
In class Chunk we could get something like that:
Then in code that use vectorization/SIMD we could use best case that support our hardware.
Maybe we could somehow check this only once to avoid every time "if" because I think that support won't change in runtime.
What do you think about it?
Beta Was this translation helpful? Give feedback.
All reactions