Przemysław Karpiński
Przemysław Karpiński
_Original comment by_ **edanor (Bitbucket: [edanor](https://bitbucket.org/edanor), GitHub: [edanor](https://github.com/edanor))**: --- Some operations, such as SINCOS will by design have some error against reference value (e.g. std::sin/std::cos). This error should be expressed...
_Original comment by_ **edanor (Bitbucket: [edanor](https://bitbucket.org/edanor), GitHub: [edanor](https://github.com/edanor))**: --- Unit tests require all test to be done using randomly generated data (if possible). This would increase the overall coverage of...
Hi, I'm glad that you find this library useful! Hope it works well for you. Unfortunately the reason why KNC is flooding market is that it has been EOL'ed (...
The explanation seems very simple: you cannot assume anything about how the SIMDVec type is implemented. In the specific cases, the implementation is using an array of 16 uint16_t elements....
alignof shows 32 because of 'alignas' used on declaration! Without it, the compiler can do whatever it wants. I did this to show, that you, as a user have the...