benchmarks/sieve/src/test/java/org/apidesign/benchmark/sieve/n64/LongSieveTest.java
changeset 1862 fa00fb053c72
parent 1860 4ce38f21f4cd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/benchmarks/sieve/src/test/java/org/apidesign/benchmark/sieve/n64/LongSieveTest.java	Tue Jan 26 05:54:37 2016 +0100
     1.3 @@ -0,0 +1,79 @@
     1.4 +/**
     1.5 + * Back 2 Browser Bytecode Translator
     1.6 + * Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 + *
     1.8 + * This program is free software: you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License as published by
    1.10 + * the Free Software Foundation, version 2 of the License.
    1.11 + *
    1.12 + * This program is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 + * GNU General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU General Public License
    1.18 + * along with this program. Look for COPYING file in the top folder.
    1.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 + */
    1.21 +package org.apidesign.benchmark.sieve.n64;
    1.22 +
    1.23 +import java.io.IOException;
    1.24 +import net.java.html.js.JavaScriptBody;
    1.25 +import org.apidesign.bck2brwsr.vmtest.Compare;
    1.26 +import org.apidesign.bck2brwsr.vmtest.VMTest;
    1.27 +import org.testng.annotations.Factory;
    1.28 +
    1.29 +/**
    1.30 + *
    1.31 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.32 + */
    1.33 +public class LongSieveTest extends Primes {
    1.34 +    public LongSieveTest() {
    1.35 +    }
    1.36 +
    1.37 +    @JavaScriptBody(args = {  }, body = "return new Date().getTime();")
    1.38 +    protected int time() {
    1.39 +        return (int) System.currentTimeMillis();
    1.40 +    }
    1.41 +
    1.42 +    @Compare
    1.43 +    public long oneThousand() throws IOException {
    1.44 +        LongSieveTest sieve = new LongSieveTest();
    1.45 +        int now = time();
    1.46 +        long res = sieve.compute(1000);
    1.47 +        int took = time() - now;
    1.48 +        log("oneThousand in " + took + " ms");
    1.49 +        return res;
    1.50 +    }
    1.51 +
    1.52 +/*
    1.53 +    @Compare(slowdown = 3.0)
    1.54 +    public long fiveThousand() throws IOException {
    1.55 +        LongSieveTest sieve = new LongSieveTest();
    1.56 +        int now = time();
    1.57 +        long res = sieve.compute(5000);
    1.58 +        int took = time() - now;
    1.59 +        log("oneThousand in " + took + " ms");
    1.60 +        return res;
    1.61 +    }
    1.62 +    @Compare(slowdown = 3.0)
    1.63 +    public long tenThousand() throws IOException {
    1.64 +        LongSieveTest sieve = new LongSieveTest();
    1.65 +        int now = time();
    1.66 +        long res = sieve.compute(10000);
    1.67 +        int took = time() - now;
    1.68 +        log("oneThousand in " + took + " ms");
    1.69 +        return res;
    1.70 +    }
    1.71 +*/
    1.72 +    @Factory
    1.73 +    public static Object[] create() {
    1.74 +        return VMTest.create(LongSieveTest.class);
    1.75 +    }
    1.76 +
    1.77 +    @JavaScriptBody(args = { "msg" }, body = "if (typeof console !== 'undefined') console.log(msg);")
    1.78 +    @Override
    1.79 +    protected void log(String msg) {
    1.80 +        System.err.println(msg);
    1.81 +    }
    1.82 +}