Searched defs:experiment (Results 1 - 8 of 8) sorted by relevance

/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DScheduledTrial.java27 private final Experiment experiment; field in class:ScheduledTrial
30 @Inject ScheduledTrial(Experiment experiment, TrialRunLoop runLoop, argument
33 this.experiment = experiment;
41 Experiment experiment() { method in class:ScheduledTrial
42 return experiment;
H A DTrialResult.java25 private final Experiment experiment; field in class:TrialResult
28 TrialResult(Trial trial, Experiment experiment, ImmutableList<String> trialMessages) { argument
30 this.experiment = experiment;
35 return experiment;
H A DExperimentModule.java33 * A module that binds data specific to a single experiment.
47 public static ExperimentModule forExperiment(Experiment experiment) { argument
48 Method benchmarkMethod = experiment.instrumentation().benchmarkMethod();
51 experiment.userParameters());
H A DTrialOutputLogger.java43 private final Experiment experiment; field in class:TrialOutputLogger
48 @TrialId UUID trialId, Experiment experiment) {
52 this.experiment = experiment;
81 writer.println("Experiment: " + experiment);
47 TrialOutputLogger(TrialOutputFactory outputManager, @TrialNumber int trialNumber, @TrialId UUID trialId, Experiment experiment) argument
H A DWorkerProcess.java79 Experiment experiment,
86 buildProcess(trialId, experiment, benchmarkSpec, localPort, benchmarkClass);
145 Experiment experiment,
150 Instrumentation instrumentation = experiment.instrumentation();
164 VirtualMachine vm = experiment.vm();
77 WorkerProcess(@rialId UUID trialId, ListenableFuture<OpenedSocket> openedSocket, Experiment experiment, BenchmarkSpec benchmarkSpec, @LocalPort int localPort, BenchmarkClass benchmarkClass, ShutdownHookRegistrar shutdownHookRegistrar) argument
143 buildProcess( UUID trialId, Experiment experiment, BenchmarkSpec benchmarkSpec, int localPort, BenchmarkClass benchmarkClass) argument
H A DTrialModule.java44 private final Experiment experiment; field in class:TrialModule
46 TrialModule(UUID trialId, int trialNumber, Experiment experiment) { argument
49 this.experiment = experiment;
69 return experiment;
74 static BenchmarkSpec provideBenchmarkSpec(Experiment experiment) { argument
76 .className(experiment.instrumentation().benchmarkMethod().getDeclaringClass().getName())
77 .methodName(experiment.instrumentation().benchmarkMethod().getName())
78 .addAllParameters(experiment.userParameters())
91 static MeasurementCollectingVisitor provideMeasurementCollectingVisitor(Experiment experiment) { argument
97 provideTrialSchedulingPolicy(Experiment experiment) argument
117 provideTrialFactory( @rialId final UUID trialId, final Run run, final Host host, final Experiment experiment, final BenchmarkSpec benchmarkSpec) argument
[all...]
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
H A DWorkerProcessTest.java83 Experiment experiment = new Experiment(
91 ProcessBuilder builder = createProcess(experiment, spec);
163 private ProcessBuilder createProcess(Experiment experiment, BenchmarkSpec benchmarkSpec) { argument
164 return WorkerProcess.buildProcess(TRIAL_ID, experiment, benchmarkSpec, PORT_NUMBER,
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
H A DbtDbvtBroadphase.cpp728 const btBroadphaseBenchmark::Experiment& experiment=experiments[iexp]; local
729 const int object_count=experiment.object_count;
730 const int update_count=(object_count*experiment.update_count)/100;
731 const int spawn_count=(object_count*experiment.spawn_count)/100;
732 const btScalar speed=experiment.speed;
733 const btScalar amplitude=experiment.amplitude;
734 printf("Experiment #%u '%s':\r\n",iexp,experiment.name);
767 for(int i=0;i<experiment.iterations;++i)
775 btBroadphaseBenchmark::OutputTime("\tUpdate",wallclock,experiment.iterations);

Completed in 109 milliseconds