class LocalExecutor[V] extends Executor[V]
Runs warmups until the maximum number of warmups is done,
or the running times have stabilized. After that, it runs
the tests the specified number of times and collects
the results using an aggregate function.
Stabilization is detected by tracking the running times for which there may have been and those for which there was no garbage collection. When either of the two running times stabilizes, we consider the JVM warmed up for the snippet.
We do this by registering on GC events instead of invoking
Platform.collectGarbage, since usually the time to invoke
the snippet is less than the time to perform full GC, and
most triggered GC cycles are fast because they collect only
the young generation.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- LocalExecutor
- Executor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new LocalExecutor(warmer: Warmer, aggregator: Aggregator[V], measurer: Measurer[V])(implicit arg0: Pickler[V])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val aggregator: Aggregator[V]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val measurer: Measurer[V]
- Definition Classes
- LocalExecutor → Executor
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def run[T](setups: Tree[Setup[T]], reporter: Reporter[V], persistor: Persistor): Tree[CurveData[V]]
- Definition Classes
- LocalExecutor → Executor
- def runSetup[T](bsetup: Setup[T]): CurveData[V]
- Definition Classes
- LocalExecutor → Executor
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- LocalExecutor → AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- val warmer: Warmer
- Definition Classes
- LocalExecutor → Executor