Examples of SciMark2SORBenchmark


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

    result = (BenchmarkResult) future.getResult();
    System.err.println("FFT : " + result);
    mflops_sum += result.getMflops();
   
    // SOR
    future = node.getJobSubmissionService().submitJob(new SciMark2SORBenchmark(TASKS));
    result = (BenchmarkResult) future.getResult();
    System.err.println("SOR : " + result);
    mflops_sum += result.getMflops();
   
    // Monte Carlo
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.