Object/Trait

com.stripe.agate.eval

Operation

Related Docs: trait Operation | package eval

Permalink

object Operation

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Operation
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ATenEmbeddingBag(weight: Register, input: Register, offsets: Register, output: Register, mode: Mode) extends Operation with Product with Serializable

    Permalink
  2. case class ATenLayerNorm(input: Register, weight: Register, bias: Register, output: Register, normalizedShape: List[Long], eps: Double) extends Operation with Product with Serializable

    Permalink
  3. case class BatchNormalizationOp(data: Register, scale: Register, bias: Register, mean: Register, variance: Register, epsilon: Float, momentum: Float, output: Register) extends Operation with Product with Serializable

    Permalink
  4. sealed abstract class BinOp extends Operation

    Permalink

    this is shared code for all the basic binary operators on tensors

  5. case class CastOp(input: Register, castTo: DataType, output: Register) extends Operation with Product with Serializable

    Permalink
  6. case class ConcatOp(inputs: NonEmptyList[Register], axis: Long, output: Register) extends Operation with Product with Serializable

    Permalink
  7. case class ConstantOfShape(input: Register, value: Option[U], output: Register) extends Operation with Product with Serializable

    Permalink
  8. case class ConstantOp(t: Unknown, output: Register) extends Operation with Product with Serializable

    Permalink
  9. case class DropoutOp(input: Register, output: Register, maskOutput: Register, ratio: Float) extends Operation with Product with Serializable

    Permalink
  10. sealed abstract class FloatMapOp extends Operation

    Permalink
  11. case class GatherOp(data: Register, indices: Register, output: Register, axis: Long) extends Operation with Product with Serializable

    Permalink
  12. case class GemmOp(a: Register, b: Register, c: Register, alpha: Float, beta: Float, transA: Boolean, transB: Boolean, output: Register) extends Operation with Product with Serializable

    Permalink
  13. case class IdentityOp(input: Register, output: Register) extends Operation with Product with Serializable

    Permalink
  14. case class MaxPoolOp(autoPad: AutoPad, ceilMode: Boolean, dilations: Option[List[Long]], kernelShape: List[Long], pads: Option[List[Long]], storageOrder: StorageOrder, strides: List[Long], input: Register, output: Register, indices: Option[Register]) extends Operation with Product with Serializable

    Permalink
  15. case class NonZeroOp(input: Register, output: Register) extends Operation with Product with Serializable

    Permalink

    This is the NonZero operator which computes the indices of the non-zero elements in the input tensor.

    This is the NonZero operator which computes the indices of the non-zero elements in the input tensor.

    Important note: Since the ONNX spec and PyTorch differ here, we are returning the transposed result in order to match what PyTorch computes.

  16. case class ReduceSumOp(axes: Option[List[Long]], keepDims: Boolean, input: Register, output: Register) extends Operation with Product with Serializable

    Permalink
  17. case class ReshapeOp(input: Register, shape: Register, output: Register) extends Operation with Product with Serializable

    Permalink
  18. case class ShapeOp(input: Register, output: Register) extends Operation with Product with Serializable

    Permalink
  19. case class SliceOp(data: Register, starts: Register, ends: Register, axes: Option[Register], steps: Option[Register], output: Register) extends Operation with Product with Serializable

    Permalink
  20. case class SoftmaxOp(input: Register, axis: Int, output: Register) extends Operation with Product with Serializable

    Permalink
  21. case class SqueezeOp(input: Register, axes: List[Long], output: Register) extends Operation with Product with Serializable

    Permalink
  22. case class TransposeOp(permOpt: Option[List[Long]], input: Register, output: Register) extends Operation with Product with Serializable

    Permalink
  23. case class UnsqueezeOp(input: Register, axes: List[Long], output: Register) extends Operation with Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object BinOp

    Permalink
  5. object FloatMapOp

    Permalink
  6. object SliceOp extends Serializable

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def runAll[F[_]](fo: F[Operation])(reg: Registers)(implicit arg0: Foldable[F]): Try[Registers]

    Permalink
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped