benchmarks/matrix-multiplication/src/test/java/org/apidesign/benchmark/matrixmul/MatrixTest.java
changeset 1854 826eb936c9a8
parent 1853 42c6e5a05360
child 1855 34efbdde4eca
child 1950 71e5cd5b29bc
     1.1 --- a/benchmarks/matrix-multiplication/src/test/java/org/apidesign/benchmark/matrixmul/MatrixTest.java	Sat Dec 26 08:59:42 2015 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,94 +0,0 @@
     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.matrixmul;
    1.22 -
    1.23 -import java.io.IOException;
    1.24 -import org.apidesign.bck2brwsr.vmtest.Compare;
    1.25 -import org.apidesign.bck2brwsr.vmtest.VMTest;
    1.26 -import org.testng.annotations.Factory;
    1.27 -
    1.28 -/**
    1.29 - *
    1.30 - * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.31 - */
    1.32 -public class MatrixTest {
    1.33 -    public MatrixTest() {
    1.34 -    }
    1.35 -
    1.36 -    @Compare(scripting = false) 
    1.37 -    public String oneIteration() throws IOException {
    1.38 -    
    1.39 -        Matrix m1 = new Matrix(5);
    1.40 -        Matrix m2 = new Matrix(5);
    1.41 -        
    1.42 -        m1.generateData();
    1.43 -        m2.generateData();
    1.44 -        
    1.45 -        Matrix res = m1.multiply(m2);
    1.46 -        
    1.47 -        StringBuilder sb = new StringBuilder();
    1.48 -        res.printOn(sb);
    1.49 -        return sb.toString();
    1.50 -    }
    1.51 -    
    1.52 -    @Compare(scripting = false) 
    1.53 -    public String tenThousandIterations() throws IOException {
    1.54 -    
    1.55 -        Matrix m1 = new Matrix(5);
    1.56 -        Matrix m2 = new Matrix(5);
    1.57 -        
    1.58 -        m1.generateData();
    1.59 -        m2.generateData();
    1.60 -        
    1.61 -        Matrix res = null;
    1.62 -        for (int i = 0; i < 10000; i++) {
    1.63 -            res = m1.multiply(m2);
    1.64 -            m1 = res;
    1.65 -        }
    1.66 -        
    1.67 -        StringBuilder sb = new StringBuilder();
    1.68 -        res.printOn(sb);
    1.69 -        return sb.toString();
    1.70 -    }
    1.71 -    
    1.72 -    @Compare(scripting = false) 
    1.73 -    public String tenUselessIterations() throws IOException {
    1.74 -    
    1.75 -        Matrix m1 = new Matrix(5);
    1.76 -        Matrix m2 = new Matrix(5);
    1.77 -        
    1.78 -        m1.generateData();
    1.79 -        m2.generateData();
    1.80 -        
    1.81 -        Matrix res = null;
    1.82 -        for (int i = 0; i < 10; i++) {
    1.83 -            res = m1.multiply(m2);
    1.84 -            m1 = res;
    1.85 -        }
    1.86 -        
    1.87 -        StringBuilder sb = new StringBuilder();
    1.88 -        res.printOn(sb);
    1.89 -        return sb.toString();
    1.90 -    }
    1.91 -
    1.92 -    
    1.93 -    @Factory
    1.94 -    public static Object[] create() {
    1.95 -        return VMTest.create(MatrixTest.class);
    1.96 -    }
    1.97 -}