c

firrtl_interpreter

NumberMonitor

class NumberMonitor extends AnyRef

This tracks the running average, variance min, max, and a histogram of series of values

Source
NumberMonitor.scala
Linear Supertypes
AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NumberMonitor
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NumberMonitor(name: String, canBeNegative: Boolean, bitSize: Int, numberOfBins: Int = 0)

    canBeNegative

    Are we tracking SInt values or UInt values

    bitSize

    How many bits to track

    numberOfBins

    Number of bits in the saved histogram, less than one disables binning

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val adjustedMaxPossible: BigInt
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val bins: Array[Long]
  7. val bitSize: Int
  8. val canBeNegative: Boolean
  9. def clear(): Unit
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  11. val divisor: BigInt
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. val maxPossible: BigInt
  18. var maxValue: BigInt
  19. def mean: Double
  20. val minPossible: BigInt
  21. var minValue: BigInt
  22. var mu: Double
  23. val name: String
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def noBinning(value: BigInt): Unit
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. def render(prettyPrint: Boolean = true): String
  29. var samples: Long
  30. def showBins: String
  31. var sq: Double
  32. def stddev: Double
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. def update(value: BigInt): Unit
  36. def updateBins(value: BigInt): Unit
  37. def variance: Double
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped