Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (306)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Bit Bashing Fun  (Read 1723 times)
0 Members and 1 Guest are viewing this topic.
Offline ShannonSmith
« Posted 2010-12-02 21:46:09 »

I am currently doing an optimised sin using a lookup table and given I have seen some bitwise magic posted before I was wondering what people could come up with for this problem:

Given power of 2 sized table containing a quarter sine wave what is the best way to get the table index/sign for the output.

1  
2  
3  
4  
5  
static final float[] TABLE; // a power of 2 length quarter wave sine table
// phase goes from 0.0f->1.0f
public static float sin(float phase){
 
}


Now you can just use conditionals to calculate each of the quadrants but if you convert phase to an integer using TABLE.length*4 the top two bits give you the sign and flip for the quarter wave. I have come up with some mashing that gives you the index and sign but I'm sure there is an easier way two exploit 2's compliment and modular to get the answer.  Bonus points for efficient linear interpolation.

Offline Riven
« League of Dukes »

JGO Overlord


Medals: 463
Projects: 4


Hand over your head.


« Reply #1 - Posted 2010-12-02 22:50:54 »

Well, if you want performance, you just make your table 4 times as big. You are trashing your cache anyway.

http://riven8192.blogspot.com/2009/08/fastmath-sincos-lookup-tables.html

I do a multiplication, a cast and a mask. It doesn't get faster than that.

Hi, appreciate more people! Σ ♥ = ¾
Learn how to award medals... and work your way up the social rankings
Projects: Revenge of the Titans, Titan Attacks, Droid Assault, and Ultratron
Offline Riven
« League of Dukes »

JGO Overlord


Medals: 463
Projects: 4


Hand over your head.


« Reply #2 - Posted 2010-12-02 22:57:20 »

If you want bit magic for the fun of it...

1  
2  
3  
4  
5  
int sign = magic >>> 31;
int flip = magic >>> 30;
int offset = magic & mask;
int invert = sign^flip;
return TABLE[TABLE.length*invert - offset*((invert<<1)-1)]


I think...

Hi, appreciate more people! Σ ♥ = ¾
Learn how to award medals... and work your way up the social rankings
Projects: Revenge of the Titans, Titan Attacks, Droid Assault, and Ultratron
Games published by our own members! Check 'em out!
Try the Free Demo of Droid Assault
Offline ShannonSmith
« Reply #3 - Posted 2010-12-02 23:12:11 »

The reason I wanted to use quarter wave is because I assumed it would have an effect on cache performance, I will have to try measuring it and see what the actual difference is.
Offline Jono

Senior Member


Medals: 1
Projects: 1



« Reply #4 - Posted 2010-12-08 10:55:22 »

Do you know if a floatToRawIntBits can be performed faster than a float->int cast? I might try comparing them at some point, but if it can be then:

1  
2  
3  
public static float sin(float phase){
 return TABLE[(Float.floatToRawIntBits(1.0f+f) >> 15) & 0xFF];
}


for a 256 length table. For 512 then shift by 14, and mask with 0x1FF, etc. The idea being to keep the float within one power-of-two fraction, and just use the most significant mantissa bits.

This assumes that the range is from 0-1.0f, excluding 1.0f.

Edit: This isn't actually answering the original question, sorry. Just a thought of an alternative to the float cast.
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
NegativeZero (5 views)
2013-06-19 03:31:52

NegativeZero (8 views)
2013-06-19 03:24:09

Jesse_Attard (15 views)
2013-06-18 22:03:02

HeroesGraveDev (58 views)
2013-06-15 23:35:23

Vermeer (58 views)
2013-06-14 20:08:06

davedes (57 views)
2013-06-14 16:03:55

alaslipknot (51 views)
2013-06-13 07:56:31

Roquen (72 views)
2013-06-12 04:12:32

alaslipknot (57 views)
2013-06-10 19:30:18

HeroesGraveDev (74 views)
2013-06-09 04:36:03
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!