Package org.nebulaframework.benchmark.scimark2.grid

Examples of org.nebulaframework.benchmark.scimark2.grid.BenchmarkResult


    result = (BenchmarkResult) future.getResult();
    System.err.println("Monte Carlo : " + result);
    mflops_sum += result.getMflops();
   
    // Sparse
    future = node.getJobSubmissionService().submitJob(new SciMark2SparseBenchmark(TASKS));
    result = (BenchmarkResult) future.getResult();
    System.err.println("Sparse : " + result);
    mflops_sum += result.getMflops();
   
    // LU
View Full Code Here

TOP

Related Classes of org.nebulaframework.benchmark.scimark2.grid.BenchmarkResult

Copyright © 2018 www.massapicom. 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.