Examples of BenchmarkResult


Examples of jsprit.core.util.BenchmarkResult

     
    }
    try {
      int count = 1;
      for(Future<BenchmarkResult> f : futures){
        BenchmarkResult r = f.get();
        print(r,count);
        results.add(f.get());
        count++;
      }
    } catch (InterruptedException e) {
View Full Code Here

Examples of jsprit.core.util.BenchmarkResult

      vehicles[run] = best.getRoutes().size();
      results[run] = cost.getCost(best);
      times[run] = stopwatch.getCompTimeInSeconds();
    }
   
    return new BenchmarkResult(p, runs, results, times, vehicles);
  }
View Full Code Here

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

    int tasks = results.size();
   
    // Calculate MFLOPS
    double mflops =  CalculationSupport.getSOR(cyclesPerTask*tasks, time);
   
    BenchmarkResult result = new BenchmarkResult(type, mflops, time);
    result.setCyclesPerTask(cyclesPerTask);
    result.setTasks(tasks);
   
    return result;
  }
View Full Code Here

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

    int tasks = results.size();
   
    // Calculate MFLOPS
    double mflops =  CalculationSupport.getLU(cyclesPerTask*tasks, time);
   
    BenchmarkResult result = new BenchmarkResult(type, mflops, time);
    result.setCyclesPerTask(cyclesPerTask);
    result.setTasks(tasks);
   
    return result;
  }
View Full Code Here

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

    int tasks = results.size();
   
    // Calculate MFLOPS
    double mflops =  CalculationSupport.getSparse(cyclesPerTask*tasks, time);
   
    BenchmarkResult result = new BenchmarkResult(type, mflops, time);
    result.setCyclesPerTask(cyclesPerTask);
    result.setTasks(tasks);
   
    return result;
  }
View Full Code Here

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

    int tasks = results.size();
   
    // Calculate MFLOPS
    double mflops =  CalculationSupport.getFFT(cyclesPerTask*tasks, time);
   
    BenchmarkResult result = new BenchmarkResult(type, mflops, time);
    result.setCyclesPerTask(cyclesPerTask);
    result.setTasks(tasks);
   
    return result;
  }
View Full Code Here

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

    int tasks = results.size();
   
    // Calculate MFLOPS
    double mflops =  CalculationSupport.getMonteCarlo(cyclesPerTask*tasks, time);
   
    BenchmarkResult result = new BenchmarkResult(type, mflops, time);
    result.setCyclesPerTask(cyclesPerTask);
    result.setTasks(tasks);
   
    return result;
  }
View Full Code Here

Examples of org.perfidix.result.BenchmarkResult

    }

    public static void main (String[] args) {
        Benchmark benchmark = new Benchmark();
        benchmark.add(StorageBench.class);
        BenchmarkResult res = benchmark.run();
        TabularSummaryOutput tab = new TabularSummaryOutput();
        tab.visitBenchmark(res);
    }
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.