Search found 1 match

by zero318
2021-09-19, 22:30:25
Forum: Agner's CPU blog
Topic: SSE replacement for FPREM1
Replies: 1
Views: 45114

SSE replacement for FPREM1

I'm working on patching an old piece of code used to reduce the angles of a 3D float vector to the range ±Pi. The original code used loops to implement a horribly inaccurate version of IEEE remainder. Replacing the loops with FPREM1 2Pi has been working well so far, but I'd really like to use SSE in...