Closed GoogleCodeExporter closed 8 years ago
Original comment by Tojiro@gmail.com
on 12 Jun 2010 at 5:20
I doubt the bit shift actually saves anything here, since you're still doing
the same number of divides (and 2/x is going to be the same speed as 1/x). The
idea of caching the subtraction pairs is a decent one, though. I'll get that
into the next release.
Original comment by Tojiro@gmail.com
on 13 Jun 2010 at 3:30
Original comment by Tojiro@gmail.com
on 13 Jun 2010 at 4:13
Hm, I did it because it also change this
dest[12] = (left + right) / (left - right);
to
(left + right) * lmr
so 2 divides -> 1 + caching the pairs. It could be just a little bit faster.
Original comment by danielhe...@gmail.com
on 13 Jun 2010 at 6:17
Original issue reported on code.google.com by
danielhe...@gmail.com
on 7 Jun 2010 at 10:14