- Kaunas, Lithuania
- https://aras-p.info/
- Joined on
2022-01-20
I suspect the difference in the Debug build performance is less of an "this is a faster algorithm", and more of a "your code uses raw C math instead of C++ math library".
In my tests…
The thing which is actually worrysome is the performance. Being correct in corner cases is fine, but not if it has a significant impact on the performance of typical cases. It is not very clear…
Indexing with a constant syntax is supported by both Clang and GCC (but not by MSVC), results in same assembly as using vget_lane
. I can change it to vget_lane
indeed (though our windows arm64…
I suspect the difference in the Debug build performance is less of an "this is a faster algorithm", and more of a "your code uses raw C math instead of C++ math library". I guess if you tried code…