Package clojure.core.matrix

Source Code of clojure.core.matrix.TestBenchmark

package clojure.core.matrix;

import com.google.caliper.Runner;
import com.google.caliper.SimpleBenchmark;



/**
* Caliper based benchmarks
*
* @author Mike
*/

public class TestBenchmark extends SimpleBenchmark {

  public void timeVectorAddition(int runs) {
    // nothing here yet
  }
 
  /**
   * @param args
   */
  public static void main(String[] args) {
    new TestBenchmark().run();
  }

  private void run() {
    Runner runner=new Runner();
    runner.run(new String[] {this.getClass().getCanonicalName()});
  }

}
TOP

Related Classes of clojure.core.matrix.TestBenchmark

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.