Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a fast square root implementation in Java for double values in the input range of [0, 2*10^12]. For any value in this range, the precision should be upto 5 decimal places. In other words, the result can differ from the Math.sqrt() method after 5 decimal places. However, this method needs to be much faster than Math.sqrt().

Any ideas? Thanks!

share|improve this question
Have you looked anything on internet before asking here? What did you get? – Luiggi Mendoza Nov 7 '12 at 5:58
@LuiggiMendoza Mostly C and assembly level hacks, most of which rely on a float value being 32 bit – Paresh Nov 7 '12 at 6:00
Have you read here? – Luiggi Mendoza Nov 7 '12 at 6:02
@LuiggiMendoza Yes. However, the max error is 4%, which means it will make a huge difference when the input is 10^12. – Paresh Nov 7 '12 at 6:03
2  
Have you profiled? Are you sure that sqrt is the bottleneck? Sqrt is already pretty fast. I believe modern computers have dedicated hardware for it. If you want something faster, you'll probably have to descend to assembly level hacks. – Antimony Nov 7 '12 at 6:06
show 9 more comments

4 Answers

up vote 5 down vote accepted

I don't believe (without a benchmark to prove this wrong) that a pure Java implementation could me much faster than Math.sqrt(). Both the Oracle JRE implementation and the OpenJDK implementation are native implementations.

share|improve this answer
I see! I was hoping that sacrificing accuracy might yield a faster method. – Paresh Nov 7 '12 at 6:23
After JIT'ing, Java code can be as fast as native code. Not always, but it can be. – tskuzzy Nov 7 '12 at 6:56
After some experimentation, it turns out, for the required accuracy, Math.sqrt() is the best option afterall! – Paresh Nov 7 '12 at 23:30

Once you give the code time to warm up. Math.sqrt() can be pretty fast

static double[] values = new double[500 * 1000];

public static void main(String... args) {
    for (int i = 0; i < values.length; i++) values[i] = i;

    for (int j = 0; j < 5; j++) {
        long start = System.nanoTime();

        for (int i = 1; i < values.length; i++) {
            values[i] = Math.sqrt(values[i]);
        }
        long time = System.nanoTime() - start;

        System.out.printf("Took %d ns to Math.sqrt on average%n", time / values.length);
    }
}

prints

Took 20 ns to Math.sqrt on average
Took 22 ns to Math.sqrt on average
Took 9 ns to Math.sqrt on average
Took 9 ns to Math.sqrt on average
Took 9 ns to Math.sqrt on average
share|improve this answer

Try this

double d = 289358932.0;
double sqrt = Double.longBitsToDouble( ( ( Double.doubleToLongBits( d )-(1l<<52) )>>1 ) + ( 1l<<61 ) );

I haven't benchmarked it, but I'd expect it to be faster. The accuracy isn't extremely good, but try it out and see if it meets your needs. I think you can add an additional bias term a to the end of the expression to make it more accurate.

EDIT: You can drastically improve the accuracy by passing it through a round or two of Newton's method

double better = (sqrt + d/sqrt)/2.0;
double evenbetter = (better + d/better)/2.0;

The second pass gives you almost the exact value of the square root.

sqrt            17022.533813476562
better          17010.557763511835
evenbetter      17010.553547724947
Math.sqrt()     17010.553547724423
share|improve this answer
Thanks! It definitely is orders of magnitude faster if used without the Newton's method. But it is also very inaccurate. Each iteration of Newton's method seems to add an incredible amount of time: I suppose it may be due to division being expensive. 2 iterations gives the required accuracy, but makes it slower than Math.sqrt(). I guess I will have to live with Math.sqrt() after all! – Paresh Nov 7 '12 at 6:57
Each iteration doubles the number of correct digits. better already has 7 digits accuracy. – starblue Nov 7 '12 at 19:15
@starblue I require 5 decimal places of accuracy, not 5 digits. better is accurate only upto 2 decimal places. evenbetter does the job but ends up being slower than Math.sqrt(). – Paresh Nov 7 '12 at 19:58
I found this works for a good approximation, Double.longBitsToDouble(((Double.doubleToRawLongBits(number) >> 32) + 1072632448 ) << 31); If you're working with number above 100,000 use this 1072679338 number over the 1072632448 because it will be more accurate. – Joe May 8 at 1:40

Don't divide by 2. Just bitshift(>>) once. 2/2 = 1

 00000010 = 2 
    >> 1
    00000001 = 1

    Code:

    int x = 64;
    int y = 0;
    y = x>>1;
    System.out.println(y);

    ------------------------------------------------------
    32
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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