benchmarks/matrix-multiplication/src/test/java/org/apidesign/benchmark/matrixmul/MatrixTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 24 Feb 2015 11:12:53 +0100
changeset 1787 ea12a3bb4b33
parent 836 eefe5c8438d4
permissions -rw-r--r--
Using year range 2012-2015 in copyright header
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.benchmark.matrixmul;
    19 
    20 import java.io.IOException;
    21 import org.apidesign.bck2brwsr.vmtest.Compare;
    22 import org.apidesign.bck2brwsr.vmtest.VMTest;
    23 import org.testng.annotations.Factory;
    24 
    25 /**
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public class MatrixTest {
    30     public MatrixTest() {
    31     }
    32 
    33     @Compare(scripting = false) 
    34     public String oneIteration() throws IOException {
    35     
    36         Matrix m1 = new Matrix(5);
    37         Matrix m2 = new Matrix(5);
    38         
    39         m1.generateData();
    40         m2.generateData();
    41         
    42         Matrix res = m1.multiply(m2);
    43         
    44         StringBuilder sb = new StringBuilder();
    45         res.printOn(sb);
    46         return sb.toString();
    47     }
    48     
    49     @Compare(scripting = false) 
    50     public String tenThousandIterations() throws IOException {
    51     
    52         Matrix m1 = new Matrix(5);
    53         Matrix m2 = new Matrix(5);
    54         
    55         m1.generateData();
    56         m2.generateData();
    57         
    58         Matrix res = null;
    59         for (int i = 0; i < 10000; i++) {
    60             res = m1.multiply(m2);
    61             m1 = res;
    62         }
    63         
    64         StringBuilder sb = new StringBuilder();
    65         res.printOn(sb);
    66         return sb.toString();
    67     }
    68     
    69     @Compare(scripting = false) 
    70     public String tenUselessIterations() throws IOException {
    71     
    72         Matrix m1 = new Matrix(5);
    73         Matrix m2 = new Matrix(5);
    74         
    75         m1.generateData();
    76         m2.generateData();
    77         
    78         Matrix res = null;
    79         for (int i = 0; i < 10; i++) {
    80             res = m1.multiply(m2);
    81             m1 = res;
    82         }
    83         
    84         StringBuilder sb = new StringBuilder();
    85         res.printOn(sb);
    86         return sb.toString();
    87     }
    88 
    89     
    90     @Factory
    91     public static Object[] create() {
    92         return VMTest.create(MatrixTest.class);
    93     }
    94 }