Good .NET library for fast streaming / batching trigonometry (Atan)?
- by Sean
I need to call Atan on millions of values per second. Is there a good library to perform this operation in batch very fast. For example, a library that streams the low level logic using something like SSE?
I know that there is support for this in OpenCL, but I would prefer to do this operation on the CPU. The target machine might not support OpenCL.
I also looked into using OpenCV, but it's accuracy for Atan angles is only ~0.3 degrees. I need accurate results.