-
Hello, I have noticed a mix of usage in the code, where Maths and Numerics are being used together. For example, float types are using Numerics and int types are using Maths. Should this be unified? It may make the code cleaner for users. |
Beta Was this translation helpful? Give feedback.
Answered by
Beyley
Aug 10, 2023
Replies: 1 comment 2 replies
-
avoid Silk.NET.Maths, if you can avoid it, do so, System.Numerics is faster and will always be faster than non-SIMD Silk.NET.Maths |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
qian-o
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
avoid Silk.NET.Maths, if you can avoid it, do so, System.Numerics is faster and will always be faster than non-SIMD Silk.NET.Maths
it exists to extend missing functionality, not replace existing functionality provided by System.Numerics