Author Topic: Fast Inverse Square Root  (Read 3499 times)

Offline shvarz

  • Bot God
  • *****
  • Posts: 1341
    • View Profile
Fast Inverse Square Root
« on: December 01, 2006, 09:50:42 PM »
http://www.math.purdue.edu/~clomont/Math/P...003/InvSqrt.pdf

most of this went over my head, but for those of you who are more mathematically/programming inclined this may be interesting
"Never underestimate the power of stupid things in big numbers" - Serious Sam

Offline Numsgil

  • Administrator
  • Bot God
  • *****
  • Posts: 7742
    • View Profile
Fast Inverse Square Root
« Reply #1 on: December 01, 2006, 11:34:56 PM »
I'm actually very familiar with this.  However, in most modern computers with a math coprocessor, the square root operation is going to be alot faster than almost anything you can make yourself, including using a custom inverse version.

Or that's my experience anyway.  Primarily this sort of thing is important if you're building hardware.  Video cards use this I'm sure.