I want my java me program to run as efficiently as possible. my goal is to make a ray cast and want to know the best way to traverse voxels. I have heard that conversion and comparison of floating point numbers is very CPU intensive. So I figured why not add a certain distance to each rays x and y, truncate the remainder, and use those coordinates to then check an octree for a voxel. Basically, is there a better way of going about doing something like this for a java me program?

Truncating floating point numbers?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

"Floating point math is slow" is old wisdom - however, it is also outdated wisdom. On modern desktop CPUs, floating point computations are fast, and there is little to gain on fixed-point computations.

Edit after having reread the question title: The approach you describe is perfectly viable, except that you need to multiply, not add to, each number. However, you should first write a small performance test program that checks whether the kind of computations you intend to do will actually benefit from fixed-point math on the hardware where you intend to run your program.

link|improve this answer
crap I mentioned it in the title but forgot to say in the body that this is for a java me project – user713635 Sep 5 '11 at 15:34
@Aasmund Eldhuset: you mention "modern desktop CPUs" but the OP specifically mentionned Java ME. Somehow I don't think there are that many Java ME VMs on modern desktop CPUs ; ) When I was working in the mobile industry there was still a lot to gain by using fixed-point computation but it was a few years and I know things are moving fast. I don't know if it's still useful or not since I don't work on mobile apps anymore : ( – SyntaxT3rr0r Sep 5 '11 at 15:36
In his defense I just edited the post my bad! not Aasmunds. – user713635 Sep 5 '11 at 15:37
D'oh - sloppy reading on my part. Then, it might be a good idea - see my edited post. – Aasmund Eldhuset Sep 5 '11 at 15:38
Why multiply and not add? is multiplication cheaper on the cpu? – user713635 Sep 5 '11 at 15:39
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.