Home
last modified time | relevance | path

Searched refs:benchmarkSpec (Results 1 – 8 of 8) sorted by relevance

/external/caliper/caliper/src/main/java/com/google/caliper/model/
DScenario.java40 private BenchmarkSpec benchmarkSpec; field in Scenario
47 this.benchmarkSpec = BenchmarkSpec.DEFAULT; in Scenario()
53 this.benchmarkSpec = builder.benchmarkSpec; in Scenario()
64 public BenchmarkSpec benchmarkSpec() { in benchmarkSpec() method in Scenario
65 return benchmarkSpec; in benchmarkSpec()
75 && this.benchmarkSpec.equals(that.benchmarkSpec); in equals()
87 .putObject(benchmarkSpec, BenchmarkSpecFunnel.INSTANCE) in initHash()
101 .add("benchmarkSpec", benchmarkSpec) in toString()
108 private BenchmarkSpec benchmarkSpec; field in Scenario.Builder
128 public Builder benchmarkSpec(BenchmarkSpec.Builder benchmarkSpecBuilder) { in benchmarkSpec() method in Scenario.Builder
[all …]
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
DWorkerSpec.java37 public final BenchmarkSpec benchmarkSpec; field in WorkerSpec
49 BenchmarkSpec benchmarkSpec, in WorkerSpec() argument
55 this.benchmarkSpec = benchmarkSpec; in WorkerSpec()
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DExperimentModule.java56 Class<?> benchmarkClass = Util.loadClass(spec.benchmarkSpec.className()); in forWorkerSpec()
57 Method benchmarkMethod = findBenchmarkMethod(benchmarkClass, spec.benchmarkSpec.methodName(), in forWorkerSpec()
60 return new ExperimentModule(benchmarkMethod, spec.benchmarkSpec.parameters()); in forWorkerSpec()
DTrialModule.java122 final BenchmarkSpec benchmarkSpec) { in provideTrialFactory() argument
137 .benchmarkSpec(benchmarkSpec)) in provideTrialFactory()
DWorkerProcess.java80 BenchmarkSpec benchmarkSpec, in WorkerProcess() argument
86 buildProcess(trialId, experiment, benchmarkSpec, localPort, benchmarkClass); in WorkerProcess()
146 BenchmarkSpec benchmarkSpec, in buildProcess() argument
156 benchmarkSpec, in buildProcess()
DConsoleOutput.java134 benchmarkSpecs.add(scenario.benchmarkSpec()); in processTrial()
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DWorkerProcessTest.java163 private ProcessBuilder createProcess(Experiment experiment, BenchmarkSpec benchmarkSpec) { in createProcess() argument
164 return WorkerProcess.buildProcess(TRIAL_ID, experiment, benchmarkSpec, PORT_NUMBER, in createProcess()
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
DWorkerModule.java55 benchmarkClassObject = Util.loadClass(workerSpec.benchmarkSpec.className()); in WorkerModule()