Examples of SciMark2LUBenchmark


Examples of org.nebulaframework.benchmark.scimark2.grid.jobs.SciMark2LUBenchmark

    result = (BenchmarkResult) future.getResult();
    System.err.println("Sparse : " + result);
    mflops_sum += result.getMflops();
   
    // LU
    future = node.getJobSubmissionService().submitJob(new SciMark2LUBenchmark(TASKS));
    result = (BenchmarkResult) future.getResult();
    System.err.println("LU : " + result);
    mflops_sum += result.getMflops();
   
   
View Full Code Here
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.